/**
 * Javascript specific to the home page (rotating images)
 */
$(document).ready(function(){


	$('#homecarousel').cycle({
		fx: 'fade',
		speed: 'slow',
		timeout: 4000,
		pager: '#ad_nav',
		before:   onBefore


	});
	
	$('#ad_nav a').click(function(){
		$('#homecarousel').cycle('stop');
	});
	
});

function onBefore() {

	if($(this).hasClass('wb_container')) {
		$('#marker').fadeIn();
		$('.ply_btn').remove();
	} else if ($(this).hasClass('video_link')) {
		$('#marker').fadeOut();
		
		if($('.ply_btn').text() == '') {
			$('#ad_nav').append('<a href="#" class="ply_btn">></a>');
		}
		
	}
	else {
		$('#marker').fadeOut();
		$('.ply_btn').remove();
	}
}




