//////////////////////////////////////
// Drop-Down Menu Navigation 
// Target: MSIE and Netscape
//
// Written: Dave Burke
// Copyright: (c) Voxpilot Ltd 2001
//////////////////////////////////////

// Global variables:

var bMsIe = (navigator.appName.indexOf("Microsoft Internet Explorer") != -1); 	// need 'different' Javascript for different browsers...


// CSS Style Sheet inclusions

window.defaultStatus="Eist Online Store";


if (bMsIe)
{
	document.write("\<link rel=\"stylesheet\" type=\"text/css\" href=\"stylesheet.css\" title=\"style\"\>");
}
else
{
	document.write("\<style type=\"text/css\"\>   ");

	document.write("\<body\>,\<table\>,\<tr\>,\<td\>   ");
	document.write("\{   ");
	document.write("  font-family: sans-serif;   ");
	document.write("  font-size: 10pt;   ");
	document.write("  color:\"0041C6\";   ");
	document.write("\}   ");

	document.write("A   ");
	document.write("{  ");
	document.write("  color: #000000;  ");
	document.write("  font-color: #000000;    ");
	document.write("  text-decoration: none;  ");
	document.write("}  ");
	
	document.write("A:hover   "); 
	document.write("{   ");
	document.write("  color: #AABBDD;   ");
	document.write("  font-color: #AABBDD;     ");
	document.write("  text-decoration: underline;   ");
	document.write("}	   ");

	document.write(".headerNavigation   ");
	document.write("\{   ");
	document.write("  font-family: Verdana, Arial, sans-serif;   ");
	document.write("  font-size: 12pt;   ");
	document.write("  background: #215231;   ");
	document.write("  color: #ffffff;   ");
	document.write("  font-weight : bold;   ");
	document.write("\}   ");

	document.write(".infoBoxHeading   ");
	document.write("\{   ");
	document.write("  font-family: Verdana, Arial, sans-serif;   ");
	document.write("  font-size: 12px;   ");
	document.write("  font-weight: bold;   ");
	document.write("  background: #215231;   ");
	document.write("  background-color: #215231;   ");
	document.write("  color: #ffffff;   ");
	document.write("  font-color: #ffffff;   ");
	document.write("\}   ");

	document.write(".reverse ");
	document.write("\{   ");
	document.write("  font-family: Verdana, Arial, sans-serif;   ");
	document.write("  font-size: 11px;   ");
	document.write("  background: #ffffff;   ");
	document.write("  background-color: #ffffff;   ");
	document.write("  color: #215231;   ");
	document.write("  font-color: #215231;   ");
	document.write("\}   ");

	document.write(".infoBox    ");
	document.write("{   ");
	document.write("  font-family: sans-serif;   ");
	document.write("  font-size: 10pt;   ");
	document.write("  background: #f8f8f9;  ");
	document.write("  background-color: #f8f8f9;  ");
	document.write("}   ");


	document.write(".infoBoxContents "); 
	document.write("{ "); 
	document.write("  font-family: sans-serif;   ");
	document.write("  background: #f8f8f9; "); 
	document.write("  background-color: #f8f8f9;   "); 
	document.write("  font-family: Verdana, Arial, sans-serif; "); 
	document.write("  font-size: 12px; "); 
	document.write("} "); 


	document.write(".footer  "); 
	document.write("{ "); 
	document.write("  font-family: Verdana, Arial, sans-serif; "); 
	document.write("  font-size: 12px; "); 
	document.write("  background: #215231; "); 
	document.write("  background-color: #215231;   "); 
	document.write("  color: #ffffff; "); 
	document.write("  font-color: #ffffff;   "); 
	document.write("  font-weight: bold; "); 
	document.write("} "); 


	document.write(".boxText   "); 
	document.write("{   "); 
	document.write("	font-family: Verdana, Arial, sans-serif;   "); 
	document.write("	font-size: 10px;   "); 
	document.write("}  "); 



	document.write("\</style\>	   ");
}



