

browserName = navigator.appName;

browserVer = parseInt ( navigator.appVersion );



version = "n2";

if ( browserName == "Netscape" && browserVer >= 3 ) version = "n3";

if ( browserName == "Microsoft Internet Explorer" && browserVer >=4 ) version = "e4";



if ( version == "n3" || version == "e4" )

{

		home_on = new Image ( 134, 94);

		home_on.src = "images/home_on.gif";

		bio_on = new Image ( 134, 94 );

		bio_on.src = "images/bio_on.gif";

		reports_on = new Image (134, 94);

		reports_on.src = "images/reports_on.gif";

		movies_on = new Image ( 134, 94 );

       	movies_on.src = "images/movies_on.gif";

		pictures_on = new Image ( 134, 94 );

      	pictures_on.src = "images/pictures_on.gif";

        news_on = new Image ( 134, 70 );

        news_on.src = "images/news_on.gif";

        blog_on = new Image ( 134, 70 );

        blog_on.src = "images/blog_on.gif";

        contact_on = new Image ( 134, 70 );

        contact_on.src = "images/contact_on.gif";

        links_on = new Image ( 134, 94 );

        links_on.src = "images/links_on.gif";

        forsale_on = new Image ( 134, 94 );

        forsale_on.src = "images/forsale_on.gif";

		sponsors_on = new Image (134, 94);

		sponsors_on.src = "images/sponsors_on.gif";

		schedule_on = new Image (134, 94);

		schedule_on.src = "images/schedule_on.gif";




		home_off = new Image ( 134, 94);

		home_off.src = "images/home_off.gif";

		bio_off = new Image ( 134, 94 );

		bio_off.src = "images/bio_off.gif";

		reports_off = new Image (134, 94);

		reports_off.src = "images/reports_off.gif";

		movies_off = new Image ( 134, 94 );

       	movies_off.src = "images/movies_off.gif";

        pictures_off = new Image ( 134, 94 );

        pictures_off.src = "images/pictures_off.gif";

        news_off = new Image ( 134, 70 );

        news_off.src = "images/news_off.gif";

        blog_off = new Image ( 134, 70 );

        blog_off.src = "images/blog_off.gif";

        contact_off = new Image ( 134, 70 );

        contact_off.src = "images/contact_off.gif";

        links_off = new Image ( 134, 94 );

        links_off.src = "images/links_off.gif";

        forsale_off = new Image ( 134, 108 );

        forsale_off.src = "images/forsale_off.gif";

		sponsors_off = new Image (134, 94);

		sponsors_off.src = "images/sponsors_off.gif";

		schedule_off = new Image (134, 94);

		schedule_off.src = "images/schedule_off.gif";




}



function button_on ( imgName )

{

        if ( version == "n3" || version == "e4" )

        {

                butOn = eval ( imgName + "_on.src" );

                document [imgName].src = butOn;

        }

}



function button_off ( imgName )

{

        if ( version == "n3" || version == "e4" )

        {

                butOff = eval ( imgName + "_off.src" );

                document [imgName].src = butOff;

        }

}

