// JavaScript Document

function showMap(){
	var flashObj = document.getElementById('flashArea');
	var googleObj = document.getElementById('googleMap');
	var btnObj = document.getElementById('flashMaopBtn');
	
	if(googleObj.style.display != 'block'){
		googleObj.style.display = 'block';
		flashObj.style.display = 'none';
		
		btnObj.innerHTML = 'RETURN TO THE FLASH BANNER';
	}
	else{
		googleObj.style.display = 'none';
		flashObj.style.display = 'block';
		
		btnObj.innerHTML = 'CLICK TO VIEW OUR LOCATION MAP';
	}
}

