jQuery(function($) {	
	
	$("body").hide();
	
	$.getScript("http://www.grandsierraresort.com/custom/js/custom/3rd_party_template/mycompsplus.com.php", function(){
		
				var body_content = $("body").html();
				$("body").empty();
				$("body").append(unescape(header) + body_content + unescape(footer));
				$("body").show();
				$("#pageTitle2").hide();
				
				var loc = String(window.location);
				if(loc.indexOf("BeginUpdatePreferences") != -1){
					$(".phead").hide();
					$("table").css("width","100%");
					$("table").css("text-transform","lowercase");
					$("table b").css("text-transform","uppercase");
					
					$(".maincontent").parent().css("text-transform","inherit");
				}
		
  });

});