// This has previsouly been used for home page take overs (or full-page lightbox).  Some past uses include (mostly to aid anyone searching for this in the future):
// Keith Richards - Life
// The Passage
// House Of Silk (Sherlock Holmes)

var takeOverTimeout;

jQuery(document).ready(function() {
	var go = (document.location.search == "?test-take-over");
	if(go) {
	        jQuery.fancybox(
	                '<a href="#" title="">&nbsp;</a>',
	                {
				'type'			: 'iframe',
				'href'			: '/take-over/house-of-silk/index.html',
	                        'autoDimensions'        : false,
				'autoScale'		: false,
	                        'width'			: 1000,
	                        'height'		: 1800,
				'margin'		: 120,
	                        'transitionIn'          : 'none',
	                        'transitionOut'         : 'fade',
				'speedOut'		: 500,
				'scrolling'		: 'no'
	                }
	        );
		takeOverTimeout = setTimeout(jQuery.fancybox.close, 15000);
	}
});

function clearTakeOverTimeout() {
	clearTimeout(takeOverTimeout);
}

