bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4)) version = "n3";
else version = "n2";
               
if (version == "n3") {
    artcoffee_on = new Image();
    artcoffee_off = new Image();
    artcoffee_on.src = "quotes/art_coffee_on.gif";
    artcoffee_off.src = "quotes/art_coffee_off.gif";

	chevys_on = new Image();
    chevys_off = new Image();
    chevys_on.src = "quotes/chevys_on.gif";
    chevys_off.src = "quotes/chevys_off.gif";

    cosi_on = new Image();
    cosi_off = new Image();
    cosi_on.src = "quotes/cosi_on.gif";
    cosi_off.src = "quotes/cosi_off.gif";

    crumbs_on = new Image();
    crumbs_off = new Image();
    crumbs_on.src = "quotes/crumbs_on.gif";
    crumbs_off.src = "quotes/crumbs_off.gif";

    crunch_on = new Image();
    crunch_off = new Image();
    crunch_on.src = "quotes/crunch_on.gif";
    crunch_off.src = "quotes/crunch_off.gif";
		
    desert_cafe_on = new Image();
    desert_cafe_off = new Image();
    desert_cafe_on.src = "quotes/desert_cafe_on.gif";
    desert_cafe_off.src = "quotes/desert_cafe_off.gif";

    five_points_on = new Image();
    five_points_off = new Image();
    five_points_on.src = "quotes/five_points_on.gif";
    five_points_off.src = "quotes/five_points_off.gif";

    five_guys_on = new Image();
    five_guys_off = new Image();
    five_guys_on.src = "quotes/five_guys_on.gif";
    five_guys_off.src = "quotes/five_guys_off.gif";

    java_bar_on = new Image();
    java_bar_off = new Image();
    java_bar_on.src = "quotes/java_bar_on.gif";
    java_bar_off.src = "quotes/java_bar_off.gif";	

    lessing_on = new Image();
    lessing_off = new Image();
    lessing_on.src = "quotes/lessing_on.gif";
    lessing_off.src = "quotes/lessing_off.gif";

    mortons_left_on = new Image();
    mortons_left_off = new Image();
    mortons_left_on.src = "quotes/mortons_left_on.gif";
    mortons_left_off.src = "quotes/mortons_left_off.gif";	

    mortons_right_on = new Image();
    mortons_right_off = new Image();
    mortons_right_on.src = "quotes/mortons_right_on.gif";
    mortons_right_off.src = "quotes/mortons_right_off.gif";

    nyhrc_on = new Image();
    nyhrc_off = new Image();
    nyhrc_on.src = "quotes/nyhrc_on.gif";
    nyhrc_off.src = "quotes/nyhrc_off.gif";	
	
    papaya_king_on = new Image();
    papaya_king_off = new Image();
    papaya_king_on.src = "quotes/papaya_king_on.gif";
    papaya_king_off.src = "quotes/papaya_king_off.gif";

    quiznos_on = new Image();
    quiznos_off = new Image();
    quiznos_on.src = "quotes/quiznos_on.gif";
    quiznos_off.src = "quotes/quiznos_off.gif";	
	
    vitamin_shoppe_on = new Image();
    vitamin_shoppe_off = new Image();
    vitamin_shoppe_on.src = "quotes/vitamin_shoppe_on.gif";
    vitamin_shoppe_off.src = "quotes/vitamin_shoppe_off.gif";
	
    flemings_on = new Image();
    flemings_off = new Image();
    flemings_on.src = "quotes/flemings_on.gif";
    flemings_off.src = "quotes/flemings_off.gif";	
	
}

function rollOn (imgName) {
	if (version == "n3") {
        imgOn = eval(imgName + "_on.src");
        document[imgName].src = imgOn;
	}
}

function rollOff (imgName) {
	if (version == "n3") {
        imgOff = eval(imgName + "_off.src");
        document[imgName].src = imgOff;
	}
}