if (document.images) {

        topnav1on = new Image();
        topnav1on.src = "http://www.vancouverrentalsuites.com/images/nav_home_on.gif"; 
        topnav1off = new Image();
        topnav1off.src = "http://www.vancouverrentalsuites.com/images/nav_home_off.gif";
        topnav2on = new Image();
        topnav2on.src = "http://www.vancouverrentalsuites.com/images/nav_about_on.gif"; 
        topnav2off = new Image();
        topnav2off.src = "http://www.vancouverrentalsuites.com/images/nav_about_off.gif";
        topnav3on = new Image();
        topnav3on.src = "http://www.vancouverrentalsuites.com/images/nav_suites_rates_on.gif"; 
        topnav3off = new Image();
        topnav3off.src = "http://www.vancouverrentalsuites.com/images/nav_suites_rates_off.gif";
        topnav4on = new Image();
        topnav4on.src = "http://www.vancouverrentalsuites.com/images/nav_reservations_on.gif"; 
        topnav4off = new Image();
        topnav4off.src = "http://www.vancouverrentalsuites.com/images/nav_reservations_off.gif";
        topnav5on = new Image();
        topnav5on.src = "http://www.vancouverrentalsuites.com/images/nav_location_on.gif"; 
        topnav5off = new Image();
        topnav5off.src = "http://www.vancouverrentalsuites.com/images/nav_location_off.gif";
        topnav6on = new Image();
        topnav6on.src = "http://www.vancouverrentalsuites.com/images/nav_contact_on.gif"; 
        topnav6off = new Image();
        topnav6off.src = "http://www.vancouverrentalsuites.com/images/nav_contact_off.gif";

}
function changeImages(){
        if(document.images){
                for (var i=0; i<changeImages.arguments.length; i+=2) {
                        document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
                }
        }
}





<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->