
// Switches standard text in forms



function alterNate(elm){

	if (!elm.base) elm.base = elm.value

	if (elm.value == elm.base) elm.value = "";

	else if (elm.value == "") elm.value = elm.base;

}

// Day of Week Image Script
// copyright Stephen Chapman, 12th Feb 2005
// you may copy this script but please keep the copyright notice as well
function dayOfWeekImage() {
var dow = new Array('sunday','monday','tuesday','wednesday','thursday','friday','saturday');
var now = new Date;
var dayNow = now.getDay();
var img = dow[dayNow];
document.write('<img src="template/vhoutennew/basis/images/rotatedays\/'+img+'.jpg"  alt="'+img+'\'s image" title="'+img+'\'s image" />');
}
