// ================================================================== //
// nav.js                                                             
// ================================================================== //
// Builds the primary and secondary navigation                                           
// ================================================================== //

function build_top_nav(place) {
	if (place == "feature") {
		feature_start = "feature_on.gif";
		feature_out = "feature_on.gif";
	} else {
		feature_start = "feature_off.gif";
		feature_out = "feature_off.gif";
	}
	if (place == "about") {
		about_start = "about_on.gif";
		about_out = "about_on.gif";
	} else {
		about_start = "about_off.gif";
		about_out = "about_off.gif";
	}
	if (place == "schedule") {
		schedule_start = "schedule_on.gif";
		schedule_out = "schedule_on.gif";
	} else {
		schedule_start = "schedule_off.gif";
		schedule_out = "schedule_off.gif";
	}

document.write('<a href="feature2.php" onmouseover="image1.src=\'images2/feature_on.gif\'"onmouseout="image1.src=\'images2/'+feature_out+'\'"><img name="image1" src="images2/'+feature_start+'" border=0></a><IMG SRC="images2/seperator.gif" ALT="" WIDTH="6" HEIGHT="16" HSPACE="8" BORDER="0"><a href="about2.php" onmouseover="image2.src=\'images2/about_on.gif\'"onmouseout="image2.src=\'images2/'+about_out+'\'"><img name="image2" src="images2/'+about_start+'" border=0></a><IMG SRC="images2/seperator.gif" ALT="" WIDTH="6" HEIGHT="16" HSPACE="8" BORDER="0"><a href="schedule2.php" onmouseover="image3.src=\'images2/schedule_on.gif\'"onmouseout="image3.src=\'images2/'+schedule_out+'\'"><img name="image3" src="images2/'+schedule_start+'" border=0></a>');
}





function show(whichscreen)
{
if (whichscreen == "return") {
window.open('popup_returns.php','jav','width=500,height=400,resizable=yes,directories=no,location=no,menubar=no,status=no,toolbar=no,history=no,scrollbars');
}

if (whichscreen == "privacy") {
window.open('popup_privacy.php','jav','width=400,height=300,resizable=yes');
}

if (whichscreen == "shipping") {
window.open('popup_shipping.php','jav','width=500,height=400,resizable=yes,directories=no,location=no,menubar=no,status=no,toolbar=no,history=no,scrollbars');
}

}




<!-- Begin
image1 = new Image();
image1.src = "images2/feature_on.gif";

image2 = new Image();
image2.src = "images2/about_on.gif";

image3 = new Image();
image3.src = "images2/schedule_on.gif";
// End -->

