if (parseInt(navigator.appVersion) >= 3) {

        picture_bright = new MakeArray(6)
        picture_dim = new MakeArray(8)
        pictureC = new MakeArray(6)
  

        blurb = new MakeArray(6)


        picture_bright[1].src = "images/wpe2.jpg"

        picture_bright[2].src = "images/wpe4.jpg"

        picture_bright[3].src = "images/wpe5.jpg" 

        picture_bright[4].src = "images/wpe6.jpg" 

        picture_bright[5].src = "images/wpe7.jpg"

        picture_bright[6].src = "images/wpe1.jpg"

        
        picture_dim[0].src = "images/wpe1dim.jpg"

        picture_dim[1].src = "images/wpe2dim.jpg"

        picture_dim[2].src = "images/wpe4dim.jpg"

        picture_dim[3].src = "images/wpe5dim.jpg" 

        picture_dim[4].src = "images/wpe6dim.jpg" 

        picture_dim[5].src = "images/wpe7dim.jpg"

        picture_dim[6].src = "images/wpe1dim.jpg"
        picture_dim[7].src = "images/wpe2dim.jpg"
 

        blurb[1] = "Novasolve"

        blurb[2] = "Novaflour"

        blurb[3] = "Novaguard"

        blurb[4] = "Novaplast"

        blurb[5] = "Novaprint"

        blurb[6] = "Novacandle"        

   }



   function MakeArray(n) {

       this.length = n

	   for (var i = 0; i<=n; i++) {

	      this[i] = new Image()

	   }

	   return this

   }



    function msover(num) {
           
		if (document.all) {
           window.status = blurb[num]
           document.images("frame2").src = picture_bright[num].src;
           document.images("frame1").src = picture_dim[num-1].src;
           document.images("frame3").src = picture_dim[num+1].src;
        }	else {
			document.images["frame2"].src = picture_bright[num].src;
			document.images["frame1"].src = picture_dim[num-1].src;
			document.images["frame3"].src = picture_dim[num+1].src;


}

    }



    function msout(num) {

        if (parseInt(navigator.appVersion) >= 3) {

            window.status = blurb[1]

        }                   

    }

function WM_preloadImages() {

/*
WM_preloadImages()
Loads images into the browser's cache for later use.

Source: Webmonkey Code Library
(http://www.hotwired.com/webmonkey/javascript/code_library/)

Author: Nadav Savio
Author Email: nadav@wired.com

Usage: WM_preloadImages('image 1 URL', 'image 2 URL', 'image 3 URL', ...);
*/

  // Don't bother if there's no document.images
  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = WM_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.WM.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
    }
  }
}

