

jQuery(document).ready(function($){


	
//	$('.digitalslideshow').hide();
//	$('.digitalstrip').hide();
//	$('#digitalstriptext').hide();
//	$('.digitalslideshow').show();
//	$('.digitalstrip').show();
//	$('#digitalstriptext').show();


//	$("#frontfooterNYC").tooltip({ effect: 'slide'});

	
	
/* Setting the click attribute for frontpage slideshows */

	$('.filmslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$('.tvslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$('.digitalslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});

	$('.filmstrip').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$('.tvstrip').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	$('.digitalstrip').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});

/* Setting the click attribute for frontpage slideshows ends here */


	
	
/* Setting the cycle attribute for frontpage slideshows */
	$('#filmslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 4000
	});

	$('#tvslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 4000
	});

	$('#digitalslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 4000
	});

/* Setting the cycle attribute for frontpage slideshows ends here */


/* Sidebars on individual pages */
	//$('.filmsidebarslideshow').click(function() {
	//	window.location=$(this).find("a").attr("href");
	//	return false;
	//});

	$('#filmsidebarslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});


//	$('.tvsidebarslideshow').click(function() {
//		window.location=$(this).find("a").attr("href");
//		return false;
//	});

	$('#tvsidebarslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});


//	$('.digitalsidebarslideshow').click(function() {
//		window.location=$(this).find("a").attr("href");
//		return false;
//	});

	$('#digitalsidebarslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});

/* Sidebars on individual pages ends here */


/* Footers on individual pages */
	$('.filmfooterslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});

	$('#filmfooterslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});


	$('.tvfooterslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});

	$('#tvfooterslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});


	$('.digitalfooterslideshow').click(function() {
		window.location=$(this).find("a").attr("href");
		return false;
	});

	$('#digitalfooterslideshow').cycle({
		//fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		continuous: true,
		speed: 2000
	});


/* Footers on individual pages ends here. */

});