$(document).ready(function(){
	$('.menu li a')
		.mouseover(function(){
			//$(this).css('background-position','0px 0px');
			$('img',this).stop().animate({opacity: 0}, {duration:200})
		})
		.mouseout(function(){
			//$(this).css('background-position','-1000px 0px');
			$('img',this).stop().animate({opacity: 1}, {duration:300, complete:function(){
				$('img',this).css({opacity: 1})
			}})
		})
		
		
		$('.infos').mouseover(function(){
			$(this).find(".text").hide();
			$(this).find(".text2").show();
			$(this).stop().animate({marginTop:"33px",height:'176px'}, {duration:150})
		}).mouseout(function(){
			$(this).find(".text").show();
			$(this).find(".text2").hide();
			$(this).stop().animate({marginTop:"108px",height:'59px'}, {duration:150, complete:function(){
				$(this).css({marginTop: "108px",height:'59px'});
			}})
		});
		
		$(".credit").mousedown(function(){
			$(".web_credit").fadeIn("fast");
		});
		$(".web_credit img.close").mousedown(function(){
			$(".web_credit").fadeOut("fast");
		});
				
});

