function mover(intTemp){
//Changes buttons on mouse over
for(var i=1;i<6;i++){
if(i==intTemp){document.getElementById("but"+i).style.color="#FFFFFF";}
else{document.getElementById("but"+i).style.color="#000000";}
}
}
function moff(intTemp){
//Changes when mouse moves off
for(var i=1;i<6;i++){document.getElementById("but"+i).style.color="#000000";}
}
function mdown(intTemp){
//Changes the border when mouse is pressed down
document.getElementById("but"+intTemp).style.borderStyle="inset"
}

function mup(intTemp){
//Changes the border when mouse is pressed down
document.getElementById("but"+intTemp).style.borderStyle="outset"
}

function mclick(intTemp){
switch(intTemp){
case 1:
location.href="events.htm";
break;
case 2:
location.href="http://www.winchestercurryclub.com/reviews.html";
break;
case 3:
location.href="http://www.multimap.com/p/browse.cgi?pc=RG287AE&title=Blue+Ginger";
break;
case 4:
location.href="menu.pdf";
break;
case 5:
location.href="cea.htm";
break;
case 6:
location.href="foodfest07.htm";
break;}
}

function vmail(name){
var X="mailto:"+name;
var Y=String.fromCharCode(64);var Z="whitchurchbaptist.org.uk";
var Edress = X+Y+Z+"?subject=WBC Web-query";
window.location = Edress;
}