$(document).ready(function(){
						   $(".menu").hover(function(){
						   $(this).fadeTo("slow", 0.3); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("slow", 1.0); // This should set the opacity back to 30% on mouseout
						   });
});

$(document).ready(function(){
						   $(".fadein").hide().fadeIn(3000);
});

$(document).ready(function(){						   
							$(".menu").click(function() {
  								$(".fadein").hide().fadeIn(1000);
							});
});
		   
$(document).ready(function(){
							$(".gallery a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
});