$(document).ready(function(){

	$("#menu li").each(function() { 
		$(this).hover(function() { 
			$(this).css("background","url(/img/bg-menu-hover.png) 0 0 repeat-x");
			$("ul", this).css("opacity", 0).css("display", "block").stop().animate({ opacity: .9 }, 500); 
		}, function() { 
			$("ul", this).stop().animate({ opacity: .0 }, 300).css("display", "none");
			$(this).css("background","url('/img/menu-separator.png') 0 50% no-repeat"); 
		});
	});

	$("#content .hoverefect").each(function() { 
		$("img", this).css("opacity", .7);
		$(this).hover(function() {
			$("img", this).stop().animate({ opacity: 1 }, 300); 
		}, function() { 
			$("img", this).stop().animate({ opacity: .7 }, 300); 
		}); 
	});

	$("#content a[rel^='prettyPhoto']").prettyPhoto({theme:'light_square'});

});

