		
//fade in-out in past events

		$(document).ready(function(){
		$(".gallery img").fadeTo("slow", 0.4);
		$(".gallery img").hover(function(){
			$(this).fadeTo("slow", 1.0); 
			},function(){
			$(this).fadeTo("slow", 0.4);
		});
});
		
