var show = "block";
var hide = "none";
function hidestores(){
		orlando = document.getElementById("orlando-info").style.display = hide;
		document.getElementById("wpb-info").style.display = hide;
		document.getElementById("dania-info").style.display = hide;
		document.getElementById("fc-info").style.display = hide;
		document.getElementById("kl-info").style.display = hide;
		document.getElementById("kw-info").style.display = hide;
	}
	 hidestores();
function change(id, newClass, storeid){
	identity=document.getElementById(id);
	identity.className=newClass;
	hidestores();
		document.getElementById("stores-mini-info").style.display = hide;
 		document.getElementById(storeid).style.display = show;
}
function showinfo(storelink){
		if(storelink == "orlando-info"){
			window.open('orlando-dive-shops.cfm', '_self')
			}
		else if(storelink == "wpb-info"){
			window.open('west-palm-beach-dive-center.cfm', '_self')
			}
		else if(storelink == "dania-info"){
    		window.open('dive-shop-fort-lauderdale.cfm', '_self')
			}
		else if(storelink == "fc-info"){
			window.open('scuba-outlet-florida-city.cfm', '_self')
			}
		else if(storelink == "kl-info"){
			window.open('key-largo-dive-shops.cfm', '_self')			
			}
		else if(storelink == "kw-info"){
			window.open('key-west-dive-shops.cfm', '_self')			
			}		
		
		}
