	/********************************************************************************
	*** NEWS PAGE
	* NEWS NAVIGATION */
			var sections = new Array();
				sections[0] = 'seeus';
				sections[1] = 'top5';
				sections[2] = 'arrivals';
				sections[3] = 'newsletters';
				sections[4] = 'dealers';
				sections[5] = 'newshome';
			
			function changeNews(goto) {				
				for(var i = 0; i < sections.length; i++) {
					page = sections[i] + '_div';
					
					if(sections[i] == goto) {
						setClassName(sections[i], 'sub_nav_selected');	// set navigation
						setClassName(page, 'news_on');  // set the page display
					}else {
						setClassName(sections[i], 'sub_nav');
						setClassName(page, 'news_off');  // set the page display
					}
					
					//// newsletter archive
					if(goto == 'archive_div') {
						setClassName('archive_div', 'news_on');
					}else {
						setClassName('archive_div', 'news_off');
					}
					
					
					setClassName('cover_div', 'news_off'); // remove the cover once loaded
				}
			}
	/********************************************************************************
	* END NEWS PAGE */
	
	/********************************************************************************
	* SHOW HIDE TR/TD USED IN NEWS AND OTHER PLACES */
			var holdShowExtra = new Array(); // holds the state of the subcat
					
			var TempSection = '';
			var TempSubSection = '';
						
			/**********************************************************************/
			/* shows and hides the sub navigation
			*  use the holdShowExtra[] array to initialize and control the show and hide state (insde the foreach below)
			*/
			function showHideExtra(id, showheight) {
				tr_over = document.getElementById(id + '_tr_over');
				tr_id	= document.getElementById(id+'_tr');	// naming conventions
				div_id	= document.getElementById(id+'_div');
				td_id	= document.getElementById(id+'_td');
					
				if(holdShowExtra[id] == 'show') {
					tr_id.className = 'glow_info hand';
					//tr_over.className = 'glow_info hand';
					div_id.className	=	'info_on';					
					holdShowExtra[id] = 'hide';
				}else {
					tr_id.className = 'hand';
					//tr_over.className = 'hand';
					tr_id.style.height = '1';
					div_id.className	=	'info_off';
					holdShowExtra[id] = 'show';
					up(0,'reset');
				}
				
				resetSubNavs(id);
				getscrolldoc(0);
				getscrolldoc(4);
				getscrolldoc(5);
				
				return true;
				
			}
	
			/**********************************************************************/
			/* Refreshes the states of all the subcats, keeping the current subcat opened
			*	Requires that we build an array to remember the names of the subcats because they are dynamic
			*  use the holdShowExtra[] array that gets built as the user clicks
			*/
			function resetSubNavs(keep) {
				var id; 
				for(id in holdShowExtra) {
					if(id != keep) { // hide the other divs
						tr_id	= document.getElementById(id+'_tr');	// naming conventions
						div_id	= document.getElementById(id+'_div');
						td_id	= document.getElementById(id+'_td');
						tr_over = document.getElementById(id + '_tr_over');
						
						tr_id.style.height = '1';
						div_id.className	=	'info_off';
						holdShowExtra[id] = 'show';
						
						//tr_over.className = 'hand';
						tr_id.className = 'hand';
					}
				}
			}
	/********************************************************************************
	* END GALLERY */