// catch them errors
onerror = handleErrors
// precache on images yo
image1 = new Image(178,24);
image1.src = "/img/city_government_on.gif";
image2 = new Image(135,24);
image2.src = "/img/city_services_on.gif";
image3 = new Image(177,24);
image3.src = "/img/tourism_and_business_on.gif";
image4 = new Image(108,24);
image4.src = "/img/city_news_on.gif";
image5 = new Image(147,24);
image5.src = "/img/hot_topics_on.gif";
// action baby
function overme(n,i) {
	document.images[n].src = i
	return true
	}
function offme(n,i) {
	document.images[n].src = i
	return true
	}
function handleErrors () {
	return true
	}
