// JavaScript Document
if (document.images) {
// Active Images
        imgS1on = new Image ( ) ;
        imgS1on.src="images/buttons/start/imgS1on.gif" ;
        imgS2on = new Image ( ) ;
        imgS2on.src="images/buttons/start/imgS2on.gif" ;
		imgS3on = new Image ( ) ;
        imgS3on.src="images/buttons/start/imgS3on.gif" ;
        imgS4on = new Image ( ) ;
        imgS4on.src="images/buttons/start/imgS4on.gif" ;
        imgS5on = new Image ( ) ;
        imgS5on.src="images/buttons/start/imgS5on.gif" ;
        imgS6on = new Image ( ) ;
        imgS6on.src="images/buttons/start/imgS6on.gif" ;
		imgS7on = new Image ( ) ;
        imgS7on.src="images/buttons/start/imgS7on.gif" ;
		imgS8on = new Image ( ) ;
        imgS8on.src="images/buttons/start/imgS8on.gif" ;
		imgS9on = new Image ( ) ;
        imgS9on.src="images/buttons/start/imgS9on.gif" ;
		
       
        imgS1off = new Image ( ) ;
        imgS1off.src="images/buttons/start/imgS1off.gif" ;
        imgS2off = new Image ( ) ;
        imgS2off.src="images/buttons/start/imgS2off.gif" ;
        imgS3off = new Image ( ) ;
        imgS3off.src="images/buttons/start/imgS3off.gif" ;
        imgS4off = new Image ( ) ;
        imgS4off.src="images/buttons/start/imgS4off.gif" ;
        imgS5off = new Image ( ) ;
        imgS5off.src="images/buttons/start/imgS5off.gif" ;
        imgS6off = new Image ( ) ;
        imgS6off.src="images/buttons/start/imgS6off.gif" ;
		imgS7off = new Image ( ) ;
        imgS7off.src="images/buttons/start/imgS7off.gif" ;
		imgS8off = new Image ( ) ;
        imgS8off.src="images/buttons/start/imgS8off.gif" ;
		imgS9off = new Image ( ) ;
        imgS9off.src="images/buttons/start/imgS9off.gif" ;
		
}
// function to 'activate' images
function imgOn (imgName) {
        if (document.images) {
                document [ imgName] .src = eval (imgName + "on.src") ;
                        }
        }
// function to 'deactivate' images
function imgOff (imgName) {
        if (document.images) {
                document [ imgName] .src = eval (imgName + "off.src") ;
                        }
        }
