$(document).ready(function() {

    $('div.photo a').fancyZoom({ scaleImg: true, closeOnClick: true });
    $('#medium_box_link').fancyZoom({ width: 400, height: 300 });
    $('#large_box_link').fancyZoom();
    $('#flash_box_link').fancyZoom();

    $("ul.sf-menu").supersubs({
        minWidth: 12, 
        maxWidth: 27,  
        extraWidth: 1
    }).superfish({
        animation: { height: 'show' },
        autoArrows	: false
    });

    // Toggle Single Portlet
    $('a.toggle').click(function() {
        $(this).parent('div').next('div').toggle();
        return false;
        }
	);
	
}); 