<!--

about_on = new Image();
about_on.src = "images/nav/about_gold.png";
about_off = new Image();
about_off.src = "images/nav/about_green.png";

contact_on = new Image();
contact_on.src = "images/nav/contact_gold.png";
contact_off = new Image();
contact_off.src = "images/nav/contact_green.png";

home_on = new Image();
home_on.src = "images/nav/home_gold.png";
home_off = new Image();
home_off.src = "images/nav/home_green.png";

news_on = new Image();
news_on.src = "images/nav/news_gold.png";
news_off = new Image();
news_off.src = "images/nav/news_green.png";

projects_on = new Image();
projects_on.src = "images/nav/projects_gold.png";
projects_off = new Image();
projects_off.src = "images/nav/projects_green.png";

services_on = new Image();
services_on.src = "images/nav/services_gold.png";
services_off = new Image();
services_off.src = "images/nav/services_green.png";


function initNavbar() {
if (document.all) {
	navigationBar = document.all
}
	else {
		navigationBar = document
	}
}

function buttonRollIn(bName) {
	initNavbar();
	navigationBar[bName].src = eval(bName + "_on.src");
}

function buttonRollOut(bName) {
	initNavbar();
	navigationBar[bName].src = eval(bName + "_off.src");
}

lakeville1_on = new Image();
lakeville1_on.src = "images/projects/lakeville/icons/lakeville1_color.jpg";
lakeville1_off = new Image();
lakeville1_off.src = "images/projects/lakeville/icons/lakeville1_gray.jpg";
lakeville2_on = new Image();
lakeville2_on.src = "images/projects/lakeville/icons/lakeville2_color.jpg";
lakeville2_off = new Image();
lakeville2_off.src = "images/projects/lakeville/icons/lakeville2_gray.jpg";
lakeville3_on = new Image();
lakeville3_on.src = "images/projects/lakeville/icons/lakeville3_color.jpg";
lakeville3_off = new Image();
lakeville3_off.src = "images/projects/lakeville/icons/lakeville3_gray.jpg";
lakeville4_on = new Image();
lakeville4_on.src = "images/projects/lakeville/icons/lakeville4_color.jpg";
lakeville4_off = new Image();
lakeville4_off.src = "images/projects/lakeville/icons/lakeville4_gray.jpg";



function gridRollIn(gridName) {
	initNavbar();
	navigationBar[gridName].src = eval(gridName + "_on.src");
}

function gridRollOut(gridName) {
	initNavbar();
	navigationBar[gridName].src = eval(gridName + "_off.src");
}
//-->

