$(document).ready(function() {
    var header_height = $('#header').height();
    var content_height = $('#content').height();
   
  $('#header').css({ opacity: 0, height: '0px'});
  $('#content').css({ opacity: 0});
 
  $("#content").delay(500).animate({opacity: 1}, 500, function() {
  $("#header").delay(200).animate({opacity: 1, height: header_height}, 800);
  }); 
  
 //$('body').scrollTo({ top:'200px',left:'0'}, 1000 );
 /*
                  $('#header').each(function() {
                    $(this).hover(function() {
                        $(this).stop().animate({ height: '600' }, 500);
                    },
                    function() {
                        $(this).stop().animate({ height: '600' }, 500);
                    });
                });
        */      

 
  

/*
    $("a").click(function(event){
        event.preventDefault();
        linkLocation = this.href;
        //$("#wrapper").fadeOut(500, redirectPage);
       
       // $("#header").animate({height: '0'}, 1500 ).$("#content").animate({height: '0'}, 1500 );
    
  //    $("#content").delay(500).animate({height: 'toggle'}, 1000 );
   $("#content").delay(800).animate({height: 'toggle'}, 1000, redirectPage );
  
    
    
    });
*/
    function redirectPage() {
        window.location = linkLocation;
    }
       /* 
        $('#teasers-horizontal').scrollingCarousel( {
			scrollerAlignment : 'horizontal',
			autoScroll: false,
			autoScrollSpeed: 15000,
			looped: true
		});
	*/
	var $paneTarget1 = $('#teasers-horizontal-container');
	
	$('#next').click(function(){
		$paneTarget1.stop().scrollTo({ top:'=0',left:'+=240'}, 500 );
	});
	$('#prev').click(function(){
		$paneTarget1.stop().scrollTo( {top:'=0',left:'-=240'}, 500 );
	});	
		
	
	$('#slideshow').nivoSlider({
        effect: 'boxRainReverse', // Specify sets like: 'fold,fade,sliceDown'
        slices: 15, // For slice animations
        boxCols: 12, // For box animations
        boxRows: 6, // For box animations
        animSpeed: 1000, // Slide transition speed
        pauseTime: 6000, // How long each slide will show
        startSlide: 0, // Set starting Slide (0 index)
        directionNav: false, // Next & Prev navigation
        directionNavHide: false, // Only show on hover
        controlNav: false, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel: false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav: true, // Use left & right arrows
        pauseOnHover: false, // Stop animation while hovering
        manualAdvance: false, // Force manual transitions
        captionOpacity: 0.8, // Universal caption opacity
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
	
	
		
    });
    
     
