//
// ...swap btn on rollOver...
// ...assumes naming convention : OFF name1.gif/name2.gif ON...

function btnON(n)	{
	r = n.src.toString();
	x = ".jpg"
	y = r.indexOf(x) - 1;
	z = r.substring(0,y);
	z += "2.jpg"
	n.src = z;
}


// ...swap btn on rollOut...

function btnOFF(n)	{
	r = n.src.toString();
	x = ".jpg"
	y = r.indexOf(x) - 1;
	z = r.substring(0,y);
	z += "1.jpg"
	n.src = z;
}