My developer is having trouble creating a smooth and efficient transition on this page. Please roll over the logo "Clockrun" and notice how the text changes once fully visible (especially in Chrome) and how quirky the roll over affect is when rolling off and on the logo.
here is the jQuery being used. Is there a better way of doing this so the transition fades in and out much more smoothly?
jQuery(document).ready(function(){
jQuery(".super_featured_desc").css("opacity",0);
jQuery(".super_featured_logo").each(function(){
jQuery(this).hover(
function () {
jQuery(this).children(".super_featured_desc").css("display","block");
jQuery(this).children(".super_featured_desc").animate({"opacity": 1}, 400);
},
function () {
jQuery(this).children(".super_featured_desc").css("display","none");
jQuery(this).children(".super_featured_desc").animate({"opacity": 0}, 400);
}
)
});
});
</script>