// when the DOM is ready...
jQuery(document).ready(function ($) {

// Centering #Container vertically
	// Window and container heights
	var wHeight = $(window).height();
	var cHeight = 425;

	// Top of container
	var topPos = (wHeight - cHeight) / 2;
	// Make sure it's positive
	(topPos < 0) ? topPos = topPos * -1 : topPos = topPos;

	// Add some for top of footer
	var topOfFoot = topPos + cHeight;

	// Apply positioning
	$('#Layout').css('top', topPos);
	$('#footer').css('top', topPos);
	$('#footer').css('marginTop', '10px');

});