/* {HEADER

Name: preloadhover.js
Description: 

HEADER} */

function PreloadImages(length, path, type) {
    for(var i = 1; i<=length; i++) {
        this[i]= new Image()
        this[i].src= path + i + type
    }
    return this
}

over=new PreloadImages(7,'/images/over','.png')
norm=new PreloadImages(7,'/images/norm','.png')

function rollOn(num){
if(document.images)
    eval('document.images["norm'+num+'"].src='+'over[num].src')
}
function rolloff(num){
if(document.images)
    eval('document.images["norm'+num+'"].src='
            +'norm[num].src')
}
