// Ajax Common ---------------------------------------------------------------------------
var xmlHttp
var siteHost = window.location.hostname
if(siteHost=='lsnetbook' || siteHost=='devbox.pg54.com' || siteHost=='devbox' || siteHost=='10.0.0.130')siteHost=siteHost+'/Magellan'
siteHost = 'http://'+siteHost+'/'

// Ajax Common ---------------------------------------------------------------------------
var xmlHttp

function nowTime(){
	var date = new Date();
	var timestamp = date.getTime();
	return timestamp
}

function GetXmlHttpObject(){
	var objXMLHttp=null
	if (window.XMLHttpRequest){
		objXMLHttp=new XMLHttpRequest()
	}else if (window.ActiveXObject){
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
	}
	return objXMLHttp
}


var activeDropNav = -1
var showSubNavTimerId
var hideSubNavTimerId
var activeProductTab = 1
var quizIsActive = false

function showSubNav(linkId){
	//if(quizIsActive)alert('Navigating away from the Quiz is a bad idea!')
	//alert(linkId)
	if(linkId!=activeDropNav){
		if(activeDropNav!=-1)doHideSubNav(activeDropNav)
		activeDropNav = linkId
	}
	clearTimeout(hideSubNavTimerId)
	var leftOffset = (document.getElementById('TopLink'+linkId).offsetLeft)-1
	document.getElementById('DropNav'+linkId).style.left=leftOffset+'px'
	document.getElementById('DropNav'+linkId).style.display='block'
}



function hideSubNav(linkId){
	hideSubNavTimerId = setTimeout('doHideSubNav('+linkId+')',250)
}


function doHideSubNav(linkId){
	document.getElementById('DropNav'+linkId).style.display='none'
}

function GallerySwapImage(Image,Image2){
	document.getElementById('MainImage').src=Image
	document.getElementById('CurrentImageSource').value=Image2
}
