var cssname = false;
if ( !template_path )
{
	var template_path = 'templates/subSilver';
}

switch (screen.width)
{
	case 800:
	//case 1024:
	//case 1280:
	//case 1600:
	//case 1152:
	//case 1360:
		cssname = screen.width;
		break;
	default:
		cssname = 800;
		break;
}


var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;

if (is_chrome == true) {
	document.write('<link rel="stylesheet" type="text/css" href="' + template_path + '/overflowchrome.css">');
} else {
	document.write('<link rel="stylesheet" type="text/css" href="' + template_path + '/overflow800.css">');
}