var linkTopBoundAdjust = 0;
var linkLeftBoundAdjust = 0;
var bootsTop = 477;
var bootsLeft = 498;
var weatherTop = 477;
var weatherLeft = 498;
var beefTop = 307;
var beefLeft = 498;
var airportTop = 307;
var airportLeft = 498;



if (is.nav4up) {
	linkTopBoundAdjust = -3;
	if (is.mac){
		 linkLeftBoundAdjust = -7;
		linkTopBoundAdjust = -27;
	} else linkLeftBoundAdjust = 0;
}	else linkTopBoundAdjust = 0; 

function executeAfterLoad()
{
	var bootsDescriptElt = getElt("bootsDescript");	setEltTop(bootsDescriptElt, bootsTop + linkTopBoundAdjust);
		setEltLeft(bootsDescriptElt, bootsLeft + linkLeftBoundAdjust);
		setEltVisibility(bootsDescriptElt, "hidden");	setEltZIndex(bootsDescriptElt, 1);
	var weatherDescriptElt = getElt("weatherDescript");	setEltTop(weatherDescriptElt, weatherTop + linkTopBoundAdjust);
		setEltLeft(weatherDescriptElt, weatherLeft + linkLeftBoundAdjust);
		setEltVisibility(weatherDescriptElt, "hidden");	setEltZIndex(weatherDescriptElt, 1);
        var beefDescriptElt = getElt("beefDescript");	setEltTop(beefDescriptElt, beefTop + linkTopBoundAdjust);
		setEltLeft(beefDescriptElt, beefLeft + linkLeftBoundAdjust);
		setEltVisibility(beefDescriptElt, "hidden");	setEltZIndex(beefDescriptElt, 1);
        var airportDescriptElt = getElt("airportfDescript");	setEltTop(airportDescriptElt, airportTop + linkTopBoundAdjust);
		setEltLeft(airportDescriptElt, airportLeft + linkLeftBoundAdjust);
		setEltVisibility(airportDescriptElt, "hidden");	setEltZIndex(airportDescriptElt, 1);


}

function loadStyles()
{
	var topAdjust = 0;
	var leftAdjust = 0;

	if (is.ie4up || is.nav4up) {
		topAdjust = bootsTop + linkTopBoundAdjust;
		leftAdjust = bootsLeft + linkLeftBoundAdjust;
		document.write("<STYLE TYPE='text/css'><!-- #bootsDescript {position: absolute; top: " + topAdjust.toString() + "; left: " + leftAdjust.toString() + "; z-index:1; visibility: hidden; } --></STYLE>");

		topAdjust = weatherTop + linkTopBoundAdjust;
		leftAdjust = weatherLeft + linkLeftBoundAdjust;
		document.write("<STYLE TYPE='text/css'><!-- #weatherDescript {position: absolute; top: " + topAdjust.toString() + "; left: " + leftAdjust.toString() + "; z-index:1; visibility: hidden; } --></STYLE>");

	        topAdjust = beefTop + linkTopBoundAdjust;
		leftAdjust = beefLeft + linkLeftBoundAdjust;
		document.write("<STYLE TYPE='text/css'><!-- #beefDescript {position: absolute; top: " + topAdjust.toString() + "; left: " + leftAdjust.toString() + "; z-index:1; visibility: hidden; } --></STYLE>");

               topAdjust = airportTop + linkTopBoundAdjust;
		leftAdjust = airportLeft + linkLeftBoundAdjust;
		document.write("<STYLE TYPE='text/css'><!-- #airportDescript {position: absolute; top: " + topAdjust.toString() + "; left: " + leftAdjust.toString() + "; z-index:1; visibility: hidden; } --></STYLE>");

         // load this style for ie4
		if (is.ie4up) document.write("<STYLE ID='ietssxyz' TYPE='text/css'></STYLE>");
	}
}

function loadElements()
{
	if (is.nav4up || is.ie4up) {
		document.write("<SPAN ID='bootsDescript'>");
		document.write("<TABLE width='179' height='120' border='0' cellspacing='0' cellpadding='4' bgcolor='#ffffff'>");
		document.write("<TR><TD valign=\"top\"><FONT FACE='Verdana, Arial, Helvetica' SIZE='2'><B>El Paso is home to two of the finest boot manufacturers: Tony Lama and Lucchese.  Seconds and \"blems\" are plentiful and heavily discounted.</B></FONT></TD></TR></TABLE></SPAN>");

		document.write("<SPAN ID=weatherDescript>");
		document.write("<TABLE width='179' height='120' border='0' cellspacing='0' cellpadding='4' bgcolor='#ffffff'>");
		document.write("<TR><TD valign=\"top\"><FONT FACE='Verdana, Arial, Helvetica' SIZE='2'><B>El Paso is prone to high winds prevailing west to east, especially in fall and spring seasons. Orientation of dock loading is crucial! Dust burns and tumbleweed accidents are common.</B></FONT></TD></TR></TABLE></SPAN>");

	        document.write("<SPAN ID=beefDescript>");
		document.write("<TABLE width='179' height='165' border='0' cellspacing='0' cellpadding='4' bgcolor='#ffffff'>");
		document.write("<TR><TD valign=\"bottom\"><FONT FACE='Verdana, Arial, Helvetica' SIZE='2'><B>Tip:  State Line Restaurant 915-581-3371. Best barbecue and steak in West Texas.</B></FONT></TD></TR></TABLE></SPAN>");
	
                document.write("<SPAN ID=airportDescript>");
		document.write("<TABLE width='179' height='165' border='0' cellspacing='0' cellpadding='4' bgcolor='#ffffff'>");
		document.write("<TR><TD valign=\"bottom\"><FONT FACE='Verdana, Arial, Helvetica' SIZE='2'><B>Significant capital improvements completed in February 1999. Frequent flight delays due to unpredictable weather between El Paso and other Texas connection cities.</B></FONT></TD></TR></TABLE></SPAN>");
	
        }
}




