$(document).ready(function(){
$.ga.load('UA-11347170-1');
	fullScreen();
	$("div.marquisItem").hoverIntent(function(){
		$(this).find("img.marquisImage").animate({
			top: "295px"
		}, {
			queue: false,
			duration: 250
		});
	}, function(){
		$(this).find("img.marquisImage").animate({
			top: "0px"
		}, {
			queue: false,
			duration: 400
		});
	});
});
function fullScreen(){
	this.moveTo(0, 0);
	this.resizeTo(screen.availWidth, screen.availHeight)
}