 
	graphic1off = new Image(41, 20); graphic1off.src ="but_b1.gif"

	graphic2off = new Image(91,20); graphic2off.src = "but_b2.gif"

	graphic3off = new Image(57, 20); graphic3off.src ="but_b3.gif"

	graphic4off = new Image(84,20); graphic4off.src = "but_b4.gif"

	graphic5off = new Image(78,20); graphic5off.src = "but_b5.gif"

	graphic6off = new Image(57,20); graphic6off.src = "but_b6.gif"

	graphic7off = new Image(68,20); graphic7off.src = "but_b7.gif"

	graphic8off = new Image(134,20); graphic8off.src = "but_b8.gif"

	graphic9off = new Image(54,20); graphic9off.src = "but_b9.gif"


	graphic1on = new Image(41,20); graphic1on.src ="but_b1_over.gif"

	graphic2on = new Image(91,20); graphic2on.src = "but_b2_over.gif"

	graphic3on = new Image(57, 20); graphic3on.src ="but_b3_over.gif"

	graphic4on = new Image(84,20); graphic4on.src = "but_b4_over.gif"

	graphic5on = new Image(78,20); graphic5on.src = "but_b5_over.gif"

	graphic6on = new Image(57,20); graphic6on.src = "but_b6_over.gif"

	graphic7on = new Image(68,20); graphic7on.src = "but_b7_over.gif"

	graphic8on = new Image(134,20); graphic8on.src = "but_b8_over.gif"

    graphic9on = new Image(54,20); graphic9on.src = "but_b9_over.gif"



function GraphicOn(graphicname)


  {

	imageOn = eval(graphicname + "on.src");

	document.images[graphicname].src = imageOn;

	

  }



function GraphicOff(graphicname)


  {

	imageOff = eval(graphicname + "off.src");

	document.images[graphicname].src = imageOff;

  }




