function MainMenu() {
	this.categorySectionLi = $('#categorySection li').children('ul').hide().end();

	this.categorySectionLi.hover(function() {
		// Mouse over
		$(this).find('> ul').stop(true, true).fadeIn(300);
	}, function() {
		// Mouse out
		$(this).find('> ul').stop(true, true).hide(); 		
	});
}



$(document).ready(function(){
	// Toggle the slider section
	// Start by hiding the expand button
	$("#expandButton").hide();
	
	$(".toggleButton").click(function(){
		$("div#sliderSection").slideToggle("slow");
		
		$(".toggleButton").toggle();
	});
	
	// Activate the menu
	MainMenu();
});
