$(document).ready(function() {
$("div.product_lines_banner_wrapper div").hover(function() { //On hover...
$(this).find("a").removeClass('thumb');
var othersEl = $('div.product_lines_banner_wrapper').children();
$.each(othersEl, function(){
$(this).find("a.thumb").css({'background' : 'url(' + $(this).find("img").attr("src") + ') no-repeat center bottom', 'margin-top' : '0px', 'width': $(this).width()});
//Fade the images to 0
$(this).find("a.thumb span").stop().fadeTo('normal', 0 , function() {
$(this).hide() //Hide the images after fade
});
});
} , function() { //on hover out...
$(this).find("a").addClass('thumb');
var othersEl = $('div.product_lines_banner_wrapper').children('div');
$.each(othersEl, function(){
$(this).find("span").stop().fadeTo('normal', 1).show();
});
});
});