// JavaScript Document
function apparition(){
	i++;
	$("."+i).fadeIn("fast");	
}
	
	
function DockEric(){
	i = 0;

	//setInterval(apparition,1000);

	$("#Dock a img").each(function(){
		$(this).hover(
		function(){
			$(this).stop(true, true).animate({"width":"105px","height":"105px","marginTop":"0px"},500,"easeOutBounce");
		},
		function(){
			$(this).stop(true, true).animate({"width":"90px","height":"90px","marginTop":"15px"},500,"easeOutBounce");
		});
	});
}
