// JavaScript Document

//alert(navigator.userAgent)
//<link href="css/general.css" type="text/css" rel="stylesheet" />

var browser=navigator.userAgent.toLowerCase();

//alert(browser);

if(browser.indexOf('firefox')!=-1)
	{
	 	document.write('<link href="style.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="style_type.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="nav.css" type="text/css" rel="stylesheet"/>');
	 }
	 
if(browser.indexOf('safari')!=-1)
	{
	 	document.write('<link href="style.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="style_type.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="nav.css" type="text/css" rel="stylesheet"/>');
	 }
	 
if(browser.indexOf('msie')!=-1)
	{
	 	document.write('<link href="style_ie.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="style_type_ie.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="nav.css" type="text/css" rel="stylesheet"/>');
	 }
	 
if(browser.indexOf('opera')!=-1)
	{
	 	document.write('<link href="style.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="style_type.css" type="text/css" rel="stylesheet"/>');
		document.write('<link href="nav.css" type="text/css" rel="stylesheet"/>');
	 }
