getobj=function(objid){return document.getElementById(objid);}
function init(){
	MenuLinks=getobj("menu").getElementsByTagName("img");
	for (i=0;i<MenuLinks.length;i++) {
		MenuLinks[i].onmouseover=function(){this.src=this.src.replace(/.gif/,"c.gif");}	
		MenuLinks[i].onmouseout=function(){this.src=this.src.replace(/c.gif/,".gif");}	
	}
	CareersLinks=getobj("Careersbtn").getElementsByTagName("img");
	for (i=0;i<CareersLinks.length;i++) {
		CareersLinks[i].onmouseover=function(){this.src=this.src.replace(/.png/,"c.png");}	
		CareersLinks[i].onmouseout=function(){this.src=this.src.replace(/c.png/,".png");}	
	}
}


