var title = document.getElementById("vcname");
var i;

function makeBen(){
	document.photo.src = "group08ben.jpg";}
function removeBen(){
	document.photo.src = "group08.jpg";}

function high(obj){
	obj.style.border="3px solid #900000";
	obj.style.margin="1px";
}
function low(obj){
	obj.style.border="2px solid #A0ACC0";
	obj.style.margin="2px";
}
function set(thename){
	title.innerHTML = thename;
	title.style.color = "black";
	title.style.fontWeight = "900";
	i=document.getElementById(thename.substring(0,thename.indexOf(" "))).getElementsByTagName('img')[0];
	i.style.border="4px solid #000066";
	i.style.margin="0px";
}
function reset(){
	title.innerHTML = "'09 - '10";
	title.style.color = "#800000";
	title.style.fontWeight = "bold";
	i.style.border="2px solid #A0ACC0";
	i.style.margin="2px";
}
