// Cufon Font Replacement
    		Cufon.replace('h1, h2, h3, h4, h5, h6, #nav li a', { hover: 'true' });
			Cufon.replace('#tagline-right h1', {
				color: '-linear-gradient(#999, 0.45=#666, 0.45=#555, #999)'
			});

//Add magnifying galls when images are loaded
jQuery(window).load(
	function() {
        jQuery(".portfolio .entry").addClass('zoom');
    }
);

			

//Portfolio Magnifying Glass Fade
jQuery(document).ready(function(){

	jQuery(".portfolio .entry a").contents("img").hover(function(){										 
	  jQuery(this).css({opacity:1}).stop().animate({opacity:0.5}, 400);
	}, function() {
	  jQuery(this).stop().animate({opacity:1}, 400);
	});
});

