function getCSS( templatepath ) {
 
	datetoday   = new Date();
	timenow		= datetoday.getTime();
	datetoday.setTime(timenow);
	thehour 	= datetoday.getHours();
	
	
	if (thehour >= 21) {
		display = "night.css";
	}else if (thehour >= 18) {
		display = "sunset.css";
	}else if (thehour >= 10) {
		display = "noon.css";
	}else if (thehour >= 7) {
		display = "morning.css";
	}else if (thehour >= 0) {
		display = "night.css";
	}else{
		display = "sunset.css";
	}
	var css = '<link href="http://journey.rainboww.net/templates/strike/css/' + display + '" rel="stylesheet" type="text/css" />';
	
	document.write(css);
}
