function buttonSwitch(name,image) {
	document.getElementById(name).src='http://www.ropect.com/images/nav/'+image;
}

function imgSwitch(name,path) {
	document.getElementById(name).src=path;
}

function resizeContainer() {
	var box = document.getElementById("container");
	var bod = document.getElementById("docBody");	
	var containerHeight = box.innerHeight;	
   var bodHeight = bod.innerHeight;
	alert(containerHeight);
	alert(bodHeight);
   bod.style.height=containerHeight + 'px';
}