// JavaScript Document
$(document).ready(function() {
						   
						   
	//roll over page accueil		   
	$("a img").hover(
  		function () {
    	$(this).animate({marginLeft: "+=-5px", marginTop: "+=-5px", width:"265px", height:"262px"}, 500, "easeOutBounce")
  }, 
  		function () {
    	$(this).animate({marginLeft: "+=5px", marginTop: "+=5px", width:"255px", height:"252px"}, 100, "jswing")
  }
  
 );
});
