
$(function(){
	$('.box.img_fade').hoverIntent(function(){
		$t = $(this);
		$t.find('.thumb_alt').fadeIn('slow')
	}, function(){
		$t = $(this);$t.find('.thumb_alt').fadeOut('slow')
	})
	/*$('.box.img_fade').find('.thumb_alt').each(function(index) {
		var name = $(this).css('background-image');
		var patt=/\"|\'|\)/g;
		$.preLoadImages(name.split('/').pop().replace(patt,''));
	})*/
})

/* preload the images to be faded in */
