function loadMenus() {
	/********** START MAIN MENU **********/
		$('#MAIN_MENU_ROW_2 TABLE THEAD TR TH').click(
			function(evt) {
				if ($(this).children('a').length != 0) {
					var c = $(this).children('A').attr('href');
					location.href = c;
				}
			}
		);
		$('#MAIN_MENU_ROW_2 TABLE THEAD TR TH').mouseover(
			function(evt) {
				if ($(this).children('a').length != 0) {
					//$(this).css('background-image', 'text-shadow', '2px 2px 2px #333333');
					//$(this).css('background-image', 'url(/images/horiz-menu-hover.png)');
					$(this).css('background-color', 'silver');
					$(this).children('A').css('text-decoration', 'none');
				}
			}
		);
		$('#MAIN_MENU_ROW_2 TABLE THEAD TR TH').mouseout(
			function(evt) {
				if ($(this).children('a').length != 0) {
					//$(this).css('background-image', 'url(/images/horiz-menu-active.png)');
					$(this).css('background-color', '#5F604B');
					$(this).children('A').css('text-decoration', 'none');
				}
			}
		);
	/********** END MAIN MENU **********/

	/********** START NAV MENU **********/
		$('.NAV TR TD').click(
			function(evt) {
				var c = $(this).children('A').attr('href');
				if ($(this).children('A').attr('target') == '_blank') {
					win_name = window.open(c, "X", "width=600,height=500,left=100,top=50,RESIZABLE,TOOLBAR,DIRECTORIES,TITLEBAR,STATUS,SCROLLBARS");
					try {
						win_name.focus();
					}
					catch(e) {}
				}
				else {
					location.href = c;
				}
			}
		);
		$('.NAV TR TD').mouseover(
			function(evt) {
				//$(this).css('background-image', 'url(/images/horiz-menu-hover.png)');
				$(this).css('backgroundColor', '#FFFFFF');
				$(this).children('A').css('text-decoration', 'underline');
			}
		);
		$('.NAV TR TD').mouseout(
			function(evt) {
				//$(this).css('background-image', 'url(/images/horiz-menu-active.png)');
				$(this).css('backgroundColor', '#EBE0C1');
				$(this).children('A').css('text-decoration', 'none');
			}
		);
	/********** END NAV MENU **********/

	/********** START UPPER NAV MENU **********/
		$('.UPPER_NAV TR TD').click(
			function(evt) {
				var c = $(this).children('A').attr('href');
				location.href = c;
			}
		);
		$('.UPPER_NAV TR TD').mouseover(
			function(evt) {
				$(this).css('backgroundColor', '#FFFFFF');
				$(this).children('A').css('text-decoration', 'underline');
			}
		);
		$('.UPPER_NAV TR TD').mouseout(
			function(evt) {
				$(this).css('backgroundColor', '#EBE0C1');
				$(this).children('A').css('text-decoration', 'none');
			}
		);
	/********** END UPPPER NAV MENU **********/
	
	
	
	/********** START UPPER NAV MENU **********/
		$('.selectCommNames').click(
			function(evt) {
				var c = $(this).children('A').attr('href');
				location.href = c;
			}
		);
		$('.selectCommNames').mouseover(
			function(evt) {
				$(this).css('backgroundColor', '#FFFFFF');
				$(this).children('A').css('text-decoration', 'underline');
			}
		);
		$('.selectCommNames').mouseout(
			function(evt) {
				$(this).css('backgroundColor', '#EBE0C1');
				$(this).children('A').css('text-decoration', 'none');
			}
		);
	/********** END UPPPER NAV MENU **********/
}

function clistON(){
	banxpos = (screen.width/2) + 174;
	$('#clist').css('left', banxpos + 'px');
	$('#clist').css('visibility', 'visible');
}

function clistOFF(){
	$('#clist').css('visibility', 'hidden');
}
