function NavRollOver( id, name, state ){
	
		path = "images/"
		img = document.getElementById( id )
	
		state == 1 ? img.src = path+name+'_o.jpg' : img.src = path+name+'.jpg'
		state == 0 ? state = 1 : state = 0
}