
     <!--

     fun1on = new Image();
     fun1on.src = "/images/fun/pipe_1_on.gif";
     fun2on = new Image();
     fun2on.src = "/images/fun/pipe_2_on.gif";
     fun3on = new Image();
     fun3on.src = "/images/fun/pipe_3_on.gif";
     fun4on = new Image();
     fun4on.src = "/images/fun/pipe_4_on.gif";
     fun5on = new Image();
     fun5on.src = "/images/fun/pipe_5_on.gif";
     fun6on = new Image();
     fun6on.src = "/images/fun/pipe_6_on.gif";
	 fun7on = new Image();
     fun7on.src = "/images/fun/pipe_7_on.gif";
     fun8on = new Image();
     fun8on.src = "/images/fun/pipe_8_on.gif";
     fun9on = new Image();
     fun9on.src = "/images/fun/pipe_9_on.gif";
     fun10on = new Image();
     fun10on.src = "/images/fun/pipe_10_on.gif";

     fun1off = new Image();
     fun1off.src = "/images/fun/pipe_1_off.gif";
     fun2off = new Image();
     fun2off.src = "/images/fun/pipe_2_off.gif";
     fun3off = new Image();
     fun3off.src = "/images/fun/pipe_3_off.gif";
     fun4off = new Image();
     fun4off.src = "/images/fun/pipe_4_off.gif";
     fun5off = new Image();
     fun5off.src = "/images/fun/pipe_5_off.gif";
     fun6off = new Image();
     fun6off.src = "/images/fun/pipe_6_off.gif";
	 fun7off = new Image();
     fun7off.src = "/images/fun/pipe_7_off.gif";
     fun8off = new Image();
     fun8off.src = "/images/fun/pipe_8_off.gif";
     fun9off = new Image();
     fun9off.src = "/images/fun/pipe_9_off.gif";
     fun10off = new Image();
     fun10off.src = "/images/fun/pipe_10_off.gif";
     
     
     function funOn(funName) 
     {
     if (document.images) 
     {
     document[funName].src = eval(funName + "on.src");
     }
     }

     function funOff(funName) 
     {
     if (document.images) 
     {
     document[funName].src = eval(funName + "off.src");
     }
     }
     //-->