// splash.js
// contains functions specific to the splash page

$(document).ready(function () 
{
    // determine the height of the browser window
	var windowHeight = $(window).height();
	
	// if the height is greater than 768px, provide a margin top value equalling the difference 
	// between the height of the image and the browser size
	if (windowHeight > 768)
	{
		$("div#splash").css("marginTop", (windowHeight - 768) + "px");
	}
});