var jquery = jQuery.noConflict();

jquery(document).ready(function(){
    jquery(".bounce").hover(function(){
	   jquery(".bounce img")
		
            // first jump 
            .animate({top:"-10px"}, 200).animate({top:"-4px"}, 200)
            // second jump
            .animate({top:"-7px"}, 100).animate({top:"-4px"}, 100)
            // the last jump
            .animate({top:"-6px"}, 100).animate({top:"-4px"}, 100);
    });
}); 


