/* JavaScript Rollovers by
Robert Gomez */

button1 = new Image(136,66);
button1.src = "images/button_1_off.gif";
button1over = new Image(136,66);
button1over.src = "images/button_1_on.gif";

button2 = new Image(136,56);
button2.src = "images/button_2_off.gif";
button2over = new Image(136,56);
button2over.src = "images/button_2_on.gif";

button3 = new Image(136,64);
button3.src = "images/button_3_off.gif";
button3over = new Image(136,64);
button3over.src = "images/button_3_on.gif";

button4 = new Image(136,65);
button4.src = "images/button_4_off.gif";
button4over = new Image(136,65);
button4over.src = "images/button_4_on.gif";

function imgSwap(string,i) {
	eval('document.button' + i + '.src = ' + string)
	}