jQuery(document).ready(function(){ $("span.special_link").hover( function(){ $(this).find("span.horz_image").attr({ "style": 'display:inline' }); $(this).find("span.horz_image").animate({opacity: 1, top: "-160"}, {queue:false, duration:400}); }, function(){ $(this).find("span.horz_image").animate({opacity: 0, left:"-9999px"}, {queue:false, duration:1}, "linear", function(){ $(this).find("span.horz_image").attr({"style": 'display:none;'}); } ); }); }); jQuery(document).ready(function(){ $("span.special_link").hover( function(){ $(this).find("span.vert_image").attr({ "style": 'display:inline' }); $(this).find("span.vert_image").animate({opacity: 1, top: "-220"}, {queue:false, duration:400}); }, function(){ $(this).find("span.vert_image").animate({opacity: 0, left:"-9999px"}, {queue:false, duration:1}, "linear", function(){ $(this).find("span.vert_image").attr({"style": 'display:none;'}); } ); }); });