// Running IE5?
if(navigator.appVersion.indexOf("MSIE 5")>-1)
	document.write('<link rel="Stylesheet" href="css/ie5.css" type="text/css" />')

// Running IE6?
if(navigator.appVersion.indexOf("MSIE 6")>-1)
	document.write('<link rel="Stylesheet" href="css/ie6.css" type="text/css" />')

// Running IE7?
if(navigator.appVersion.indexOf("MSIE 7")>-1)
	document.write('<link rel="Stylesheet" href="css/ie7.css" type="text/css" />')

// Running Mozilla?
if(navigator.appName == "Netscape" && navigator.appVersion.indexOf("5.0 (Windows;")>-1)
	document.write('<link rel="Stylesheet" href="css/mozilla.css" type="text/css" />')

// Running Opera?
if(navigator.appName == "Opera")
	document.write('<link rel="Stylesheet" href="css/opera.css" type="text/css" />')
