Cufon('h2');
Cufon('h3');

$(document).ready(function(){

$("a.fancybox").fancybox({
	'titleShow'	 	 : false,
	'overlayColor' : '#3C0418',
	'overlayOpacity' : 0.9
});

$('.fancybox').each(function() { 
   $(this).hover(
   function() { $(this).stop().animate({ opacity: 0.4 }, 200).animate({ opacity: 1.0 }, 200); }, 
   function() { $(this).stop().animate({ opacity: 1.0 }, 200); }
   ); 
}); 

}); 
