now = new Date
theYear=now.getYear()
if (theYear < 1900)
theYear=theYear+1900

function pageWidth() {return window.innerWidth != null? window.innerWidth : document.documentElement && document.documentElement.clientWidth ?       document.documentElement.clientWidth : document.body != null ? document.body.clientWidth : null;} 
function pageHeight() {return window.innerHeight != null? window.innerHeight : document.documentElement && document.documentElement.clientHeight ?       document.documentElement.clientHeight : document.body != null ? document.body.clientHeight : null;} 
function checkSize() {
if (pageWidth() < 970) {
	self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight)
}
if (pageHeight() < 800) {
	self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight)
}
}

$(document).ready(function(){
	  $.fn.ceebox.videos.base.param.allowScriptAccess = "sameDomain" //added to kill the permissions problem
	  $(".ceebox").ceebox({borderColor:'#fff',boxColor:"#fff",titles:false,overlayOpacity:0.7, margin:300});
	  $('.quotes').innerfade({
		  speed: 'slow',
		  timeout: 9000,
		  type: 'sequence',
		  containerheight: '200px'
	  });
	  $('.films').click(function() { 
        $('#screen').fadeIn();
		$('#filmlist').fadeIn();
        return false; 
    });
	$('#filmlist a').click(function() { 
        $('#screen').fadeOut();
		$('#filmlist').fadeOut('fast');
        return false; 
    });
	$('#screen').click(function() { 
        $('#screen').fadeOut();
		$('#filmlist').fadeOut('fast');
        return false; 
    });
	
});

