//links were changed to document root for demo


//Choose they stylesheet to use based on the browser/platform
if(navigator.userAgent.indexOf("MSIE 5.") > -1) {
	document.write('<link rel="stylesheet" href="assets/css/top_stylesheet_best.css" type="text/css">');
} else if(navigator.userAgent.indexOf("MSIE 6.") > -1) {
	document.write('<link rel="stylesheet" href="assets/css/top_stylesheet_best.css" type="text/css">');
} else if(parseInt(navigator.appVersion) < 5.0) {
	if(navigator.platform.indexOf("Mac") > -1) {
		document.write('<link rel="stylesheet" href="assets/css/top_stylesheet_mac.css" type="text/css">');
	} else {
		document.write('<link rel="stylesheet" href="assets/css/top_stylesheet_win.css" type="text/css">');
	}
} else {
	document.write('<link rel="stylesheet" href="assets/css/top_stylesheet_best.css" type="text/css">');
}