

// functions for home page 
$(function(){

	
	$('.thumb a').each(function(){
			$(this).prepend('<span class="sfhover" ></span>');
	});
	
	
	$('.thumb a').hover(function(){
$('.sfhover', this).fadeIn('fast');							 
							 },function(){
	$('.sfhover', this).fadeOut('slow');
								 });

$('.thumb a').fancybox({
					   
	  'showCloseButton'	: true,
	'titlePosition' 	: 'inside'
					   });


					   
						   });
