jQuery(function($) {

	//$('#content').hide();
	
	$.fn.supersized.options = {  
		startwidth: 800,  
		startheight: 600,
		vertical_center: 1,
		slideshow: 1,
		navigation: 1,
		transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
		pause_hover: 0,
		slide_counter: 0,
		slide_captions: 1,
		slide_interval: 100000  
	};
    $('#supersize').supersized(); 
    
    $("#content-x").click(function(){
		$("#content").slideToggle(1000);
		// Stop the link click from doing its normal thing
		return false;
    });
    
    // slide down the current container onload
    //$("#content").slideDown(750);

});

