// flips the jesters - silly

if (document.images) {
	 var L2on=new Image();
	 var R2off=new Image();	 
	 L2on.src = R2off.src = "images/jest40rx.gif";
//	 	 	 
	 var L2off=new Image();
	 var R2on=new Image();	 	 
	 L2off.src = R2on.src = "images/jest40lx.gif";
   }
//	 
function imgOn() {
				 if (document.images) {
				 		document.L2.src = L2on.src;						
						document.R2.src = R2on.src;
						}				
				}
//				
function imgOff() {
				 if (document.images) {	 		
						document.L2.src = L2off.src;
						document.R2.src = R2off.src;
						}
				}		