$(document).ready(function() {
	$('.rollover-img-sc .img').each(function() {
		var $$ = $(this);
		var $i = $$.children('img:first');

		$$.css('background', 'url('+$$.children('img:last').attr('src')+') no-repeat');
		$$.css('float', 'left');
		$$.children('img:last').hide();
		
		$i.hover(function () {
			$i.stop().animate({opacity: 0}, 250);
		});

		$i.mouseout(function(){
			$i.stop().animate({opacity: 1}, 250);
		});
	});
});

