
<!-- Created and Updated by Jei Corporation December, 1998
<!-- All right reserved. Please contact before copying this program
<!-- to home@jeico.com

if ((navigator.userAgent.substring(0,9) == "Mozilla/3") ||
    (navigator.userAgent.substring(0,9) == "Mozilla/4"))
        {
        standard = new MakeArray(12)
        over = new MakeArray(12)
        blurb = new MakeArray(12)

        standard[1].src = "jfront1.gif"
        standard[2].src = "websh1.gif"
        standard[3].src = "curren1.gif"
        standard[4].src = "nflags1.gif"
        standard[5].src = "wtime1.gif"  
        standard[6].src = "wcolor1.gif"
        standard[7].src = "weblink1.gif"
        standard[8].src = "jprodtn1.gif"
        standard[9].src = "jinqr1.gif"
        standard[10].src = "welcome1.gif"
        standard[11].src = "freelink1.gif"
	standard[12].src = "santa1.gif"

        over[1].src = "jfront2.gif"
        over[2].src = "websh2.gif"
        over[3].src = "curren2.gif"
        over[4].src = "nflags2.gif"
        over[5].src = "wtime2.gif"  
        over[6].src = "wcolor2.gif"
        over[7].src = "weblink2.gif"
        over[8].src = "jprodtn2.gif"
        over[9].src = "jinqr2.gif"
        over[10].src = "welcome2.gif"
        over[11].src = "freelink2.gif"
	over[12].src = "santa2.gif"

        blurb[1] = "Click here to return to the frontpage."  
        blurb[2] = "Multi WebSearch with very fast!"
        blurb[3] = "No time waiting currency rates"
        blurb[4] = "Over 200 national flags are at your hand"
        blurb[5] = "World Time-Clock is in real time! From Moscow to Cape Town."
        blurb[6] = "216 color spectrums for web page makers"
        blurb[7] = "Our selected internet links site"
        blurb[8] = "Jeico's hanling product, Must Visit!!"
        blurb[9] = "We are willing to receive your inquires now!"
        blurb[10] = "Email now to welcome@jeico.com !"
        blurb[11] = "Click to get the free links for your site!"
	blurb[12] = "Send your card on this special season!"
       }
        
function MakeArray(n)
        {
        this.length = n
        for (var i = 1; i<=n; i++)
                {
                this[i] = new Image()
                }
        return this
        }
        
function msover(num)
        {
        if ((navigator.userAgent.substring(0,9) == "Mozilla/3") ||
            (navigator.userAgent.substring(0,9) == "Mozilla/4"))
                {
                if (over[num].src != "")
                        {
                        document.images[(num)-1].src = over[num].src
                        window.status = blurb[num]
                       }
                }
        }
                
function msout(num)
        {
        if ((navigator.userAgent.substring(0,9) == "Mozilla/3") ||
            (navigator.userAgent.substring(0,9) == "Mozilla/4"))
                {   
                if (standard[num].src != "")
                        {
                        document.images[(num)-1].src = standard[num].src
                        }
                }
        }
// -->
