jQuery(document).ready(function(){
	//Wellcome Screen
	if($("#welcomescreen").length > 0) {
		var body_h = parseInt(($(document).height() - 291)/2);
		var body_w = parseInt(($(document).width() - 960)/2);
		$("#welcomescreen").css({position: "absolute", top: body_h, left: body_w, margin: "0px 0px 0px 0px"});
		$("html").css("overflow", "hidden");
	}	
	//Top Menu Selected
	$("#nav ul li").find("a").each(function(){
		if($(this).attr("href") == window.location.href) {
			$(this).addClass("selected");
		}
	});
});