jQuery(window).load(function () {

var content_open = true;
var lower_toggle = false;
var header_width = jQuery("#header").width();
var open_space = jQuery(window).width() - header_width;
var window_height = jQuery(this).height();
var cfInterval = null;

// SHOW/HIDE PAGE background

jQuery("#cross").hover(function () {

	jQuery(this).find("img").stop().fadeTo("slow", 1);
	
}, function () {

	jQuery(this).find("img").stop().fadeTo("slow", 0.3);

});

jQuery("#show_hide").hover(function () {

	jQuery(this).find("img").stop().fadeTo("slow", 1);
	
}, function () {

	jQuery(this).find("img").stop().fadeTo("slow", 0.3);

});


jQuery("#cross").click(function () {

	jQuery("#mainpage").animate({"margin-left": "-1000px"}, 800, "easeInOutExpo");
	jQuery("body").css("overflow", "hidden").resize();
		
	content_open = false;		
	
});

jQuery("#show_hide").click(function () {

	if (content_open == false) {
	
		jQuery("#mainpage").animate({"margin-left": "0px"}, 800, "easeInOutExpo");
		jQuery("body").css("overflow", "auto").resize();		
	
		content_open = true;
	
	} else {
	
		content_open = false;		
	
	}

})


});



