<!--
window.onerror=null;

netscape = (document.layers) ? 1:0
goodIE = (document.all) ? 1:0

if (netscape) {
   window.captureEvents(Event.MOUSEMOVE);
   window.onMouseMove = Mover;  
   var docObj = "document.";
   var StyleObj = "";  }

else if (goodIE) {
   document.onmousemove=Mover;
   var docObj = "document.all.";
   var StyleObj = ".style"; }


imgon = 0;
var loaded = 0;


function preloadImages(the_images_array) {
        for(loop = 0; loop < the_images_array.length; loop++)
        {
        var an_image = new Image();
        an_image.src = the_images_array[loop];
        }
loaded = 1;
}

//this is for position of arrows
function Mover(e){
        if(loaded){
        var xpos = (netscape)?e.pageX:event.x;
        xpos -= 50
        if ((xpos >= 98) && (xpos <= 558)){
        eval(docObj + 'horzarrow' + StyleObj + '.left =' + xpos);
        eval(docObj + 'horzarrow2' + StyleObj + '.left =' + xpos);
		}
	
        var ypos = (netscape)?e.pageY:event.y;
        ypos -= 50
        if ((ypos >= 98) && (ypos <= 263)){
        eval(docObj + 'vertarrow' + StyleObj + '.top =' + ypos);
        eval(docObj + 'vertarrow2' + StyleObj + '.top =' + ypos);

       	}}}

//-->
