

jQuery(document).ready(function($){
    jQuery.easing.def = 'easeInOutQuad';
	
	$(".cinema_toggler").toggle( function(){
	  $("#container_body").fadeTo("slow", 0.0);
      $(this).css({"background-position":"left -26px"});
	  
	  },function(){
	  $("#container_body").fadeTo("slow", 1.0);
	  $(this).css({"background-position":"left top"});
	});
	
	$("#footer_toggle .footer_toggler").toggle( function(){
	  $("#footer_toggle").animate({ bottom:"0" }, 800 )
	  
	  },function(){
	  $("#footer_toggle").animate({bottom:"-410px"}, 300 )
	});
	
});


