function MainMenu() {
	this.navLi = $("ul#nav li").children('ul').hide().end();
	
	this.navLi.hover(function() {
		// Mouse over
		$(this).find('> ul').stop(true, true).fadeIn(200);
	}, function() {
		// Mouse out
		$(this).find('> ul').stop(true, true).hide();
	});
}

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

});
