function nover(obj){
	if(obj.src.lastIndexOf('-over') == -1)
		obj.src = obj.src.substr(0,obj.src.length-4)+"-over.gif";
}
function nout(obj){
	if(obj.src.lastIndexOf('-over') > -1)
		obj.src = obj.src.substr(0,obj.src.length-9)+".gif";
}