<!--// check if browser is capable, NS3+, IE4+ 
if (document.images) { 
	//image0 
	image0N= new Image(50,26); 
	image0N.src= 'imgs/title_home.png' ; 
	image0H= new Image(50,26); 
	image0H.src= 'imgs/title_home_light.png' ; 
	//image1
	//base image 
	image1N= new Image(176,26); 
	image1N.src= 'imgs/title_daily.png' ; 
	//hover or rollover image 
	image1H= new Image(176,26); 
	image1H.src= 'imgs/title_daily_light.png' ; 
	
	//image2 
	image2N= new Image(146,26); 
	image2N.src= 'imgs/title_bline.png' ; 
	image2H= new Image(146,26); 
	image2H.src= 'imgs/title_bline_light.png' ; 
	//image3 
	image3N= new Image(131,26); 
	image3N.src= 'imgs/title_details.png' ; 
	image3H= new Image(131,26); 
	image3H.src= 'imgs/title_details_light.png' ; 
	//image4 
	image4N= new Image(110,26); 
	image4N.src= 'imgs/title_tax.png' ; 
	image4H= new Image(110,26); 
	image4H.src= 'imgs/title_tax_light.png' ; 
	//image5 
	image5N= new Image(167,26); 
	image5N.src= 'imgs/title_tech.png' ; 
	image5H= new Image(167,26); 
	image5H.src= 'imgs/title_tech_light.png' ; 
	//image6 
	image6N= new Image(152,26); 
	image6N.src= 'imgs/title_moreinfo.png' ; 
	image6H= new Image(152,26); 
	image6H.src= 'imgs/title_moreinfo_light.png' ; 
	//image7 
	image7N= new Image(135,26); 
	image7N.src= 'imgs/title_council.png' ; 
	image7H= new Image(135,26); 
	image7H.src= 'imgs/title_council_light.png' ; 
}

function myOn(myImgName) { 
	document[myImgName].src=eval(myImgName+ 'H' ).src; 
} 
function myOut(myImgName) { 
	document[myImgName].src=eval(myImgName+ 'N' ).src; 
} 


//-->
