
		var homewatchEffect, homewatchBG, homewatchInfo, reviseSearch, newSearch, saveSearch;
	
		window.onload = function() {
			//homewatchLogin = new fx.Combo('homewatch_login_section', {height: true, opacity: true, duration: 300});
			//homewatchLogin.hide();
			//homewatchInfo = new fx.Combo('homewatch_info_section', {height: true, opacity: true, duration: 300});
			//homewatchInfo.hide();
			mapSearchHide = new fx.Combo('map_search_hide', {height: true, opacity: true, duration: 300});
			instruct = new fx.Combo('instructions', {height: true, opacity: true, duration: 300});
			//mapSearchHide.hide();
			var m = document.getElementById('map_search_hide');
			//m.style.height="0px";
			//m.style.opacity = 0;
			//m.style.visibility = "hidden";
			m.style.opacity=0;
			//m.style.filter='alpha(opacity=0)';
			m.style.display = "block";
			mapSearchHide.hide();
			
			var y = document.getElementById('instructions');
			//m.style.height="0px";
			//m.style.opacity = 0;
			//m.style.visibility = "hidden";
			y.style.opacity=0;
			//m.style.filter='alpha(opacity=0)';
			y.style.display = "block";
			instruct.hide();
			//reviseSearch = new fx.Combo('popout_container', {height: true, opacity: true, duration: 200});
			//reviseSearch.hide();
			//newSearch = new fx.Combo('new_search_popout', {height: true, opacity: true, duration: 200});
			//newSearch.hide();
			//saveSearch = new fx.Combo('save_search_popout', {height: true, opacity: true, duration: 200});
			//saveSearch.hide();
			}
		function homewatch_tab_click(){
			homewatchLogin.toggle();
		}
		function homewatch_login_click(){
			homewatchLogin.toggle();
			homewatchInfo.toggle();
		}
		function revise_search_click(){
			newSearch.hide();
			saveSearch.hide();
			reviseSearch.toggle();
			var x = document.getElementById('revise_search');
			if (x.className=='active') x.className='';
			else x.className='active';
			document.getElementById('new_search').className='';
			document.getElementById('save_search').className='';
		}
		function new_search_click(){
			newSearch.toggle();
			saveSearch.hide();
			reviseSearch.hide();
			var x = document.getElementById('new_search');
			if (x.className=='active') x.className='';
			else x.className='active';
			document.getElementById('revise_search').className='';
			document.getElementById('save_search').className='';
		}
		function save_search_click(){
			newSearch.hide();
			saveSearch.toggle();
			reviseSearch.hide();
			var x = document.getElementById('save_search');
			if (x.className=='active') x.className='';
			else x.className='active';
			document.getElementById('revise_search').className='';
			document.getElementById('new_search').className='';
		}


