jQuery(function($){
		
	// IE last-child selectors
	$('.home #sub-header .callout:last-child').addClass('last');
	$('.row div:last-child').addClass('last');
	$('#main h3:first-child').addClass('first');

	
	setInterval( "slideSwitch()", 4000 );
	

	// Homepage Cycle Slider
	$('#video-slides #slides').cycle({ 
	    fx:     'fade', 
	    speed:  'fast', 
	    timeout: 0, 
	    pager:  '#pager',
		pagerAnchorBuilder: function(idx, slide) { 
			return '#pager li:eq(' + idx + ') a'; 
		}
	}); 
	
	// Homepage Rotate Header
	$('#rotate-headline').cycle({ 
	    fx:     'fade',
	    speed:  'fast',
	    timeout: 6000
	}); 
	
	
	// Scroll down to anchor links
	$('.scrub').click(function() {
	   var elementClicked = $(this).attr("href");
	   var destination = $(elementClicked).offset().top;
	   $("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 800 );
	   return false;
	});

	
	
});
