<!--DocOzone's Javascript code, copyright 1998
//  Feel free to borrow and modify this code,
//  but be sure leave this credit in the source! 
//  Your pal,   -Dr. Thaddeus Ozone-
//        http://www.ozones.com/

window.onerror = null; 
var netscape = 0;
var goodIE = 0;
browserName = navigator.appName.substring(0,8);
browserVer = parseFloat(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3)
{ netscape = 1; }
if (browserName == "Microsof" && browserVer >= 4)
{ goodIE = 1; }

if (document.images) {
names = new Array( "services", "about", "contact", "home", "organizing", "staging", "speaking", "testimonials", "products" );
buttons = new Array(18);
for (m=0; m<=17; m++) {
    buttons[m] = new Image();
}
        buttons[0].src = "images/b_services-on.gif";
        buttons[1].src = "images/b_services-off.gif";
        buttons[2].src = "images/b_about-on.gif";
        buttons[3].src = "images/b_about-off.gif";
		buttons[4].src = "images/b_contact-on.gif";
        buttons[5].src = "images/b_contact-off.gif";
        buttons[6].src = "images/b_home-on.gif";
        buttons[7].src = "images/b_home-off.gif";
        buttons[8].src = "images/b_organizing-on.gif";
        buttons[9].src = "images/b_organizing-off.gif";
        buttons[10].src = "images/b_staging-on.gif";
        buttons[11].src = "images/b_staging-off.gif";
        buttons[12].src = "images/b_speaking-on.gif";
        buttons[13].src = "images/b_speaking-off.gif";
        buttons[14].src = "images/b_testimonials-on.gif";
        buttons[15].src = "images/b_testimonials-off.gif";
        buttons[16].src = "images/b_products-on.gif";
        buttons[17].src = "images/b_products-off.gif";
}

function swap(des,num) {
if (document.images) {
document.images[names[des]].src = buttons[num].src;  }}

//  close the comment tag, this hides the script from really old browsers! -->