jQuery(document).ready(function(){
if ($('.homebank')) {
	$('.homebank div a').css('opacity', 0);
	$('.homebank div').hover(function(){
		$(this).css('background-position', 'center 0')
		$(this).children().css('opacity', 1);
	}, function(){
		$(this).css('background-position', 'center -140px')
		$(this).children().css('opacity', 0);
	})
}
});
