/*
		
	****************************************************	
	Scripts
	****************************************************
------------------------------------------------------------*/

/*
	Init layers for 4+ Browsers
----------------------------------------*/

agt = navigator.userAgent.toLowerCase();
w3c = (document.getElementById) ? true : false;
xxx = ((agt.indexOf('opera') != -1) || (agt.indexOf('webtv') != -1) || (agt.indexOf('omniweb') != -1)) ? true : false;

ieX = ((agt.indexOf('msie')  != -1) && w3c && !xxx) ? true : false;
ie4 = ((agt.indexOf('msie')  != -1) && (document.all) && !w3c && !xxx) ? true : false;
ns6 = ((agt.indexOf('gecko') != -1) && w3c && !xxx) ? true : false;
ns4 = (document.layers && !w3c && !xxx) ? true : false;

/*
	Dynamic Browser Specific CSS
----------------------------------------*/

if      (ieX) document.write('<link rel="stylesheet" type="text/css" href="script/ieX.css" />');
else if (ie4) document.write('<link rel="stylesheet" type="text/css" href="script/ie4.css" />');
else if (ns6) document.write('<link rel="stylesheet" type="text/css" href="script/ns6.css" />');
else if (ns4) document.write('<link rel="stylesheet" type="text/css" href="script/ns4.css" />');
else 		  document.write('<link rel="stylesheet" type="text/css" href="script/ie4.css" />');


