$(document).ready(function() {
	
	$("div#trailer").hide();
	$("div#cast").hide();
	$("div#crew").hide();
	$("div#synopsis").hide();
    
    $("a#trailerBtn").click(function () {
 		$("div.box").hide();
 		$("#header").animate({"margin-top":"-410px"}, "fast");
 		$("div#trailer").fadeIn();
      });      
      
    $("a#synopsisBtn").click(function () {
 		$("div.box").hide();
 		$("#header").animate({"margin-top":"-410px"}, "fast");
 		$("div#synopsis").fadeIn();
      }); 
      
    $("a#castBtn").click(function () {
 		$("div.box").hide();
 		$("#header").animate({"margin-top":"-410px"}, "fast");
 		$("div#cast").fadeIn();
 		$("div#crew").fadeIn();
      });
      
 	   $('#slider').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed:    800, 
   			timeout:  8000
    		});
      
	
});


