function showHideStores(id)
	{
		//alert(id);
		//document.getElementById("current").innerHTML = id;
		var state_array  = new Array('ak','al','az','ar','ca','co','ctnjri','new','demddc','fl','ga','hi','id','il','in','ia','ks','ky','la','me','mi','mn','ms','mo','mt','ne','nv','nm','ny','ncsc','nd','oh','ok','or','pa','sd','tn','tx','ut','vas','wa','wi','wy');
		for( i in state_array )
		{
			if( id != state_array[i] )
			{
				s = document.getElementById(state_array[i]);
				if(s) s.style.display = "none";
			}
		}
		
		var active_state = document.getElementById(id);
		var shadow       = document.getElementById('shadow'); 
		var none         = document.getElementById('none');
		if( active_state )
		{
			active_state.style.display = "block";
			none.style.display = "none";
			shadow.style.display = "block";
			shadow.style.height = active_state.offsetHeight + "px";
			shadow.style.width = active_state.offsetWidth + "px";
		}
		else
		{
			none.style.display = "block";
			shadow.style.display = "block";
			shadow.style.height = none.offsetHeight + "px";
			shadow.style.width = none.offsetWidth + "px";
		}
		
	}