//Changes img src on hover

centerButton = new Image(); 
centerButton.src = "http://www.gibbscare.org/wp-content/themes/fest/images/center.png";
centerButton2 = new Image(); 
centerButton2.src = "http://www.gibbscare.org/wp-content/themes/fest/images/center2.png";

manorButton = new Image(); 
manorButton.src = "http://www.gibbscare.org/wp-content/themes/fest/images/manor.png";
manorButton2 = new Image(); 
manorButton2.src = "http://www.gibbscare.org/wp-content/themes/fest/images/manor2.png";

function changeCenter() {
	document.cent.src=centerButton2.src;
}
function changeCenterBack() {
	document.cent.src=centerButton.src;
}
function changeManor() {
	document.manor.src=manorButton2.src;
}
function changeManorBack() {
	document.manor.src=manorButton.src;
}