 $(document).ready(function(){
            $(".button").hover(function(){
                $(".button img")
                .animate({top:"-16px"}, 200).animate({top:"-2px"}, 200) 
                .animate({top:"-9px"}, 100).animate({top:"-2px"}, 100) 
				.animate({top:"-7px"}, 100).animate({top:"-2px"}, 100); 
				
				$(".shadow img")
				 .animate({width:"120px",left:"-10px",top:"76px",opacity: 0.6}, 200).animate({width:"140px",left:"-20px",top:"69px",opacity: 1}, 200); 
				 
				 $(".welcome img")
                .animate({top:"-60px"}, 200).animate({top:"-47px"}, 200) 
                .animate({top:"-57px"}, 100).animate({top:"-49px"}, 100) 
				.animate({top:"-55px"}, 100).animate({top:"-50px"}, 100); 
                
				});
        }); 
      
