// Items that need to be updated based on the colour of the day
var themecolourA="#0000FF";
var themecolourB="#FF0100";
var themecolourC="#006E00";
var currentcolour="";

var today = new Date();
switch(today.getUTCDate()%3) {
case 1 :
currentcolour=themecolourA;
img = "http://www.vpacheco.com/images/top_content/colorazul.gif";
break;
case 2 :
currentcolour=themecolourB;
img = "http://www.vpacheco.com/images/top_content/colorrojo.gif";
break;
default :
currentcolour=themecolourC;
img = "http://www.vpacheco.com/images/top_content/colorverde.gif";
break;
}

document.write('<style type="text/css">');
document.write('#topnavsearchbox {background:'+currentcolour+'}');
document.write('a.modulecopylink:hover {color:'+currentcolour+'}');
document.write('a.morelink:hover {color:'+currentcolour+'}');
document.write('.searchCheckbox {background:'+currentcolour+'}');
document.write('</style>');
