var browser;
if (window.navigator.userAgent.indexOf("MSIE") != -1)
	browser = 'ie';
else
	browser = 'good';

if(window.navigator.vendor == 'Apple Computer, Inc.') {
	document.write('<link href="/stylesheets/safari.css" rel="stylesheet" type="text/css" />');
}

if(window.navigator.product == 'Gecko' && window.navigator.platform.indexOf("Win") != -1) {
	document.write('<link href="/stylesheets/mozilla_win.css" rel="stylesheet" type="text/css" />');
}

if(window.navigator.userAgent.indexOf("MSIE") != -1) {
	document.write('<link href="/stylesheets/ie.css" rel="stylesheet" type="text/css" />');
	document.write('<link href="/stylesheets/ie_splash.css" rel="stylesheet" type="text/css" />');
}

if(window.navigator.userAgent.indexOf("MSIE 7") != -1) {
	document.write('<link href="/stylesheets/ie7.css" rel="stylesheet" type="text/css" />');
}

