<!-- Begin

function checkVersion() {
    if (navigator.appVersion.charAt(0)>=3) {
        return true; }
    else { 
        return false; }
}

if (checkVersion()) {
    Home_On = new Image(46,16);
    Home_On.src ="http://www.hateisnotafamilyvalue.com/img/home_on.gif";
    Home_Off = new Image(46,16);
    Home_Off.src ="http://www.hateisnotafamilyvalue.com/img/home_off.gif";
    Links_On = new Image(95,20);
    Links_On.src ="http://www.hateisnotafamilyvalue.com/img/links_on.gif";
    Links_Off = new Image(95,20);
    Links_Off.src ="http://www.hateisnotafamilyvalue.com/img/links_off.gif";
    Info_On = new Image(89,17);
    Info_On.src ="http://www.hateisnotafamilyvalue.com/img/info_on.gif";
    Info_Off = new Image(89,17);
    Info_Off.src ="http://www.hateisnotafamilyvalue.com/img/info_off.gif";
    Suggest_On = new Image(134,19);
    Suggest_On.src ="http://www.hateisnotafamilyvalue.com/img/suggest_on.gif";
    Suggest_Off = new Image(134,19);
    Suggest_Off.src ="http://www.hateisnotafamilyvalue.com/img/suggest_off.gif";
    Contact_On = new Image(88,15);
    Contact_On.src ="http://www.hateisnotafamilyvalue.com/img/contact_on.gif";
    Contact_Off = new Image(88,15);
    Contact_Off.src ="http://www.hateisnotafamilyvalue.com/img/contact_off.gif";
    Archives_On = new Image(73,16);
    Archives_On.src ="http://www.hateisnotafamilyvalue.com/img/archives_on.gif";
    Archives_Off = new Image(73,16);
    Archives_Off.src ="http://www.hateisnotafamilyvalue.com/img/archives_off.gif";
    }

function imgact(imgOame) {
    if (checkVersion()) {
        imgOn = eval(imgOame+"_On.src");
        document[imgOame].src=imgOn;
    }
}

function imginact(imgOame) {
    if (checkVersion()) {
        imgOff = eval(imgOame+"_Off.src");
        document[imgOame].src=imgOff;
    }
}

// End -->
