
scoreboard_content_image_1_off = new Image();
scoreboard_content_image_1_off.src = "http://www.oufoundation.org/ouf2/images/foundation.gif";
scoreboard_content_image_1_on = new Image();
scoreboard_content_image_1_on.src = "http://www.oufoundation.org/ouf2/images/foundation_on.gif";
scoreboard_content_image_2_off = new Image();
scoreboard_content_image_2_off.src = "http://www.oufoundation.org/ouf2/images/giving.gif";
scoreboard_content_image_2_on = new Image();
scoreboard_content_image_2_on.src = "http://www.oufoundation.org/ouf2/images/giving_on.gif";
scoreboard_content_image_3_off = new Image();
scoreboard_content_image_3_off.src = "http://www.oufoundation.org/ouf2/images/reports.gif";
scoreboard_content_image_3_on = new Image();
scoreboard_content_image_3_on.src = "http://www.oufoundation.org/ouf2/images/reports_on.gif";
scoreboard_content_image_4_off = new Image();
scoreboard_content_image_4_off.src = "http://www.oufoundation.org/ouf2/images/publications.gif";
scoreboard_content_image_4_on = new Image();
scoreboard_content_image_4_on.src = "http://www.oufoundation.org/ouf2/images/publications_on.gif";
scoreboard_content_image_5_off = new Image();
scoreboard_content_image_5_off.src = "http://www.oufoundation.org/ouf2/images/links.gif";
scoreboard_content_image_5_on = new Image();
scoreboard_content_image_5_on.src = "http://www.oufoundation.org/ouf2/images/links_on.gif";

function ScorebardTabSet (tabname) {
	if(document.getElementById)
	{
                var gif_id = "1";
                if(tabname == "standings_tab")
                {
                        gif_id = "2";
                }
                if(tabname == "email_tab")
                {
                        gif_id = "3";
                }
                if(tabname == "exboard_tab")
                {
                        gif_id = "4";
                }
                if(tabname == "exboard2_tab")
                {
                        gif_id = "5";
                }
		document.getElementById('scoreboard_tab').style.display = 'none';
		document.getElementById('standings_tab').style.display = 'none';
		document.getElementById('email_tab').style.display = 'none';
		document.getElementById('exboard_tab').style.display = 'none';
		document.getElementById('exboard2_tab').style.display = 'none';

		document.getElementById('STANDINGS_TAB_AREA').style.backgroundColor =
			document.getElementById(tabname).style.backgroundColor;
//		document.getElementById('STANDINGS_TAB_ALL').style.backgroundColor =
//			document.getElementById(tabname).style.backgroundColor;

                document.getElementById('STANDINGS_TAB_1').src = scoreboard_content_image_1_off.src;
                document.getElementById('STANDINGS_TAB_2').src = scoreboard_content_image_2_off.src;
                document.getElementById('STANDINGS_TAB_3').src = scoreboard_content_image_3_off.src;
                document.getElementById('STANDINGS_TAB_4').src = scoreboard_content_image_4_off.src;
                document.getElementById('STANDINGS_TAB_5').src = scoreboard_content_image_5_off.src;



//                var tagNameToActivate = "STANDINGS_UNDERLINE_" + gif_id;
//                document.getElementById(tagNameToActivate).src = "http://www.oufoundation.org/ouf2/images/spacer.gif";

                var tagNameToActivate = "STANDINGS_TAB_" + gif_id;
                var tagImageToActivate = eval("scoreboard_content_image_" + gif_id + "_on");
                document.getElementById(tagNameToActivate).src = tagImageToActivate.src;
//		confirm(document.getElementById(tagNameToActivate).src);
		document.getElementById(tabname).style.display = 'block';
	}
}
