// Specific Decooh! Functions

	jQuery(document).ready(function($) {
	//$(function(){
		$.fn.supersized.options = {  
			startwidth: 1024,  
			startheight: 768,
			vertical_center: 1,
			slides : [
				{image : '/wp-content/themes/decooh_01/images/decooh_background.jpg' }
			]
		};
        $('#supersized').supersized(); 
    });
    // this one triggers the footer pane
  //  $(document).ready(function(){
	jQuery(document).ready(function($) {

    	$("#footer-widget-area").hide();
    	$("#trigger_footer_close").hide();
    	$("#trigger_footer_open").click(function(){
        	$("#footer-widget-area").slideToggle("slow");
        	$(this).hide();
        	$("#trigger_footer_close").show();
        	return false;
    	});
	    	$("#trigger_footer_close").click(function(){
        	$("#footer-widget-area").slideToggle("slow");
        	$(this).hide();
        	$("#trigger_footer_open").show();
        	return false;
    	});
	});
