    $(document).ready(function() {
				
		$(".portfolio_unit").hover(function(){
		$(this).children("span.portfolio_thumb_bkg").slideUp("fast");
		$(this).children("span.portfolio_thumb_info").fadeTo("slow", 1);

		},function(){
		$(this).children("span.portfolio_thumb_bkg").slideDown("slow");
		$(this).children("span.portfolio_thumb_info").fadeTo("fast", 0);
		
		}).click(
			function()
			{
				window.location = $('a.info_link', $(this)).attr('href');
			}
		);

	if('function' == typeof $.fancybox) $("a[rel=fancybox]").fancybox({
		'hideOnContentClick': true
	});

		
    });
    
