	$(document).ready(function() {
			var $textVal = $("#content").html();
			var $img = "<img src='img/gthm_orange.gif' id='logo'>";
			$("#content").html($img);
            $("#content").css("display", "none");
			$("#content").fadeIn(500).delay(1500);
			
			
            $("#content").fadeOut(3000, switchScript);

			function switchScript(x) {
				$("#content").html($textVal);
				showScript();
			}
			function showScript() {
				$("#content").fadeIn(2000);
			}
    });
