/**
* Applies effects to the home page videos
* to rotate the images.
*/
$(document).ready(function () {
	$('#home_player_videos').cycle({ 
		fx:    'scrollHorz', 
		speed:  'slow',
		timeout: 6000,
		pager: '#home_player_nav',
		activePagerClass: 'home_player_active'
	 });
	 //If any link in slide nav is clicked, slide show is stopped.
	$('#home_player_videos a').click(function() {
		$('#home_player_videos').cycle('pause');
	});
	//setup video links to for the correct links
	$('a.fancybox').each
	$('a.fancybox').each(function(index) {
		var href = this.href;
		if ( href.indexOf("?") == -1 ) {
			this.href = href + "?iframe_video=true";
		} else {
			this.href = href + "&iframe_video=true";
		}
	});
	
	//setup fancybox, remember to restart the slide show.
	$('a.fancybox').fancybox({
		'hideOnContentClick' : false,
		'titleShow' : false,
		'frameWidth' : 678,
		'frameHeight' : 382,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'onClosed' : function() { 
			$("#home_player_videos").cycle('resume');}
	});
});