$.ajaxSetup({cache: false});
$(function() {
	RunTTip();
});

function RunTTip(){
	$('.TTip1').tipsy({fade: true, gravity: 's'});
	$('.TTip2').tipsy({fade: true, gravity: 'w'});
}

function GotoALink(url,TTL,VU){
	$(".tipsy").remove();
	$("#Menu1").html("");
	$(".dv2x2,.dv1x0,.dv1x1,.dv2x3").hide();
	$(".dv2x1").attr("align","left");
	$(".dv0x1").show().find(".dv0x2").html(TTL);
	$("#dvSubPg").html("").show().addClass("Loading").load(url,'',function(){ $(this).removeClass("Loading"); RunTTip(); window.onpopstate = function(event) { window.location = document.location; }; });
	window.history.pushState("", document.title, (VU == "" ? "http://www.infradrive.com/" : VU ));
	document.title = "InfraDrive | " + TTL;
}

function GoHmPg(){
	$(".tipsy").remove();
	$("#Menu1").html("");
	$(".dv2x2,.dv1x0,.dv1x1,.dv2x3").show();
	$(".dv2x1").attr("align","center");
	$(".dv0x1").hide();
	$("#dvSubPg").hide();
	window.onpopstate = function(event) { window.location = document.location; };
	window.history.pushState("", document.title, "http://www.infradrive.com/");
	document.title = "InfraDrive, Inc. | Your Present Future";
}
