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();
	});
	
	// Share the post
	$("#shareThisPost").click(function() {
		$("#shareThisPost").fadeOut("slow", function() {
			$("div#sharePost ul").fadeIn("slow");
		});
	});
	
	// Initialize prettyPhoto
	$("a[rel^='prettyPhoto']").prettyPhoto();
});
