// JavaScript Document
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
theseconds = datetoday.getSeconds();

if (theseconds > 55) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 50) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 45) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 40) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 35) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 30) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 25) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 20) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 15) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 10) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else if (theseconds > 5) {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}
else {
	document.getElementById('DisplayCSS').href = "/common/css/top.css";
}

