function changeBodyMaps() {
	document.getElementById('sub-navigation-neighbourhoods').style.display = 'none';
	document.getElementById('sub-navigation-maps-spacer').style.display = 'none';
	document.getElementById('sub-navigation-maps').style.display = 'block';
}
function changeMapBodyGrandCayman() {
	turnOffAllCayman();
	document.getElementById('maps').setAttribute("class", "active");
	document.getElementById('map_canvas').style.display = 'block';
	document.getElementById('map_title_grand').style.display = 'block';
	loadScript();
	
}  
function changeMapBodyLittleCayman() {
	turnOffAllCayman();
	document.getElementById('maps').setAttribute("class", "active");
	document.getElementById('map_canvas').style.display = 'block';
	document.getElementById('map_title_little').style.display = 'block';
	document.getElementById('map_canvas').innerHTML = '<img src="images/islands/lc_map_large.gif" width="700"  height="400" alt="" />';
	
}  
function changeMapBodyCaymanBrac() {
	turnOffAllCayman();
	document.getElementById('maps').setAttribute("class", "active");
	document.getElementById('map_canvas').style.display = 'block';
	document.getElementById('map_title_brac').style.display = 'block';
	document.getElementById('map_canvas').innerHTML = '<img src="images/islands/cb_map_large.gif" width="700" height="400" alt="" />';
	
}  
function initialize() {
    var myLatlng = new google.maps.LatLng(19.3, -81.25);
    var myOptions = {
      zoom: 11,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
    
}
  
function loadScript() {
    var script = document.createElement("script");
    script.type = "text/javascript";
    script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=initialize";
    document.body.appendChild(script);
}

function changeBodyNeighbourhoods() {
	
	document.getElementById('sub-navigation-neighbourhoods').style.display = 'block';
	
} 


function changeBodyImmigration() {
	turnOffAllCayman();
	document.getElementById('immigration').setAttribute("class", "active");
	document.getElementById('sub-navigation-neighbourhoods').style.display = 'none';
	document.getElementById('content-details-imagration').style.display = 'block';
	
} 

function changeBodyUsefulInformation() {
	turnOffAllCayman();
	document.getElementById('usefulinformation').setAttribute("class", "active");
	document.getElementById('sub-navigation-neighbourhoods').style.display = 'none';
	document.getElementById('content-details-usefulinformation').style.display = 'block';
	
	
}
function turnOffAllCayman() {
	//exception
	document.getElementById('sub-navigation-maps-spacer').style.display = 'block';
	//end
	document.getElementById('map_title_grand').style.display = 'none';
	document.getElementById('map_title_brac').style.display = 'none';
	document.getElementById('map_title_little').style.display = 'none';
	document.getElementById('sub-navigation-maps').style.display = 'none';
	//document.getElementById('sub-navigation-neighbourhoods').style.display = 'none';
	document.getElementById('map_canvas').style.display = 'none';
	//document.getElementById('map_title').style.display = 'none';
	document.getElementById('content-details-cayman').style.display = 'none';
	document.getElementById('content-details-westbay').style.display = 'none';
	document.getElementById('content-details-sevenmilebeach').style.display = 'none';
	document.getElementById('content-details-camanabay').style.display = 'none';
	document.getElementById('content-details-georgetown').style.display = 'none';
	document.getElementById('content-details-southsound').style.display = 'none';
	document.getElementById('content-details-spottsprospectredbay').style.display = 'none';
	document.getElementById('content-details-savannahnorthwardnewlands').style.display = 'none';
	document.getElementById('content-details-boddentown').style.display = 'none';
	document.getElementById('content-details-northside').style.display = 'none';
	document.getElementById('content-details-rumpointcaymankai').style.display = 'none';
	document.getElementById('content-details-eastend').style.display = 'none';
	document.getElementById('content-details-caymanbrac').style.display = 'none';
	document.getElementById('content-details-littlecayman').style.display = 'none';
	document.getElementById('content-details-panel').style.display = 'none';
	document.getElementById('content-details-imagration').style.display = 'none';
	document.getElementById('content-details-usefulinformation').style.display = 'none';
	document.getElementById('photo-large-westbay').style.display = 'none';
	document.getElementById('photo-large-7milebeach').style.display = 'none';
	document.getElementById('photo-large-camanabay').style.display = 'none';
	document.getElementById('photo-large-georgetown').style.display = 'none';
	document.getElementById('photo-large-southsound').style.display = 'none';
	document.getElementById('photo-large-spottsprospectredbay').style.display = 'none';
	document.getElementById('photo-large-savannahnorthwardnewlands').style.display = 'none';
	document.getElementById('photo-large-boddentown').style.display = 'none';
	document.getElementById('photo-large-northside').style.display = 'none';
	document.getElementById('photo-large-rumpointcaymankai').style.display = 'none';
	document.getElementById('photo-large-eastend').style.display = 'none';
	document.getElementById('photo-large-caymanbrac').style.display = 'none';
	document.getElementById('photo-large-littlecayman').style.display = 'none';
	document.getElementById('photo-large').style.display = 'none';
	document.getElementById('westbay').setAttribute("class", "not-active");
	document.getElementById('7milebeach').setAttribute("class", "not-active");
	document.getElementById('camanabay').setAttribute("class", "not-active");
	document.getElementById('georgetown').setAttribute("class", "not-active");
	document.getElementById('southsound').setAttribute("class", "not-active");
	document.getElementById('redbay').setAttribute("class", "not-active");
	document.getElementById('newlands').setAttribute("class", "not-active");
	document.getElementById('boddentown').setAttribute("class", "not-active");
	document.getElementById('northside').setAttribute("class", "not-active");
	document.getElementById('caymankai').setAttribute("class", "not-active");
	document.getElementById('eastend').setAttribute("class", "not-active");
	document.getElementById('caymanbrac').setAttribute("class", "not-active");
	document.getElementById('littlecayman').setAttribute("class", "not-active");
	document.getElementById('maps').setAttribute("class", "not-active");
	document.getElementById('immigration').setAttribute("class", "not-active");
	document.getElementById('usefulinformation').setAttribute("class", "not-active");
	document.getElementById('neighbourhood-count').style.display = 'none';
					
}

function changeBodyWestBay() {
	turnOffAllCayman();
	document.getElementById('westbay').setAttribute("class", "active");
	document.getElementById('content-details-westbay').style.display = 'block';
	document.getElementById('photo-large-westbay').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=10');
	//document.getElementById('photo-large-westbay').innerHTML = '<img src="images/neighbourhoods/West-Bay.jpg" width="700" height="260" alt="" />';
}

function changeBody7MileBeach() {
	turnOffAllCayman();
	document.getElementById('7milebeach').setAttribute("class", "active");
	document.getElementById('content-details-sevenmilebeach').style.display = 'block';
	document.getElementById('photo-large-7milebeach').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=20');
	//document.getElementById('photo-large-7milebeach').innerHTML = '<img src="images/neighbourhoods/West-Bay.jpg" width="700" height="260" alt="" />';
}

function changeBodyCamanaBay() {
	turnOffAllCayman();
	document.getElementById('camanabay').setAttribute("class", "active");
	document.getElementById('content-details-camanabay').style.display = 'block';
	document.getElementById('photo-large-camanabay').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=0');
	
}

function changeBodyGeorgeTown() {
	turnOffAllCayman();
	document.getElementById('georgetown').setAttribute("class", "active");
	document.getElementById('content-details-georgetown').style.display = 'block';
	document.getElementById('photo-large-georgetown').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=30');
}

function changeBodySouthSound() {
	turnOffAllCayman();
	document.getElementById('southsound').setAttribute("class", "active");
	document.getElementById('content-details-southsound').style.display = 'block';
	document.getElementById('photo-large-southsound').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=30');
}

function changeSpottsProspectRedBay(){
	turnOffAllCayman();
	document.getElementById('redbay').setAttribute("class", "active");
	document.getElementById('content-details-spottsprospectredbay').style.display = 'block';
	document.getElementById('photo-large-spottsprospectredbay').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=40');
}

function changeBodySavannahNorthwardNewlands() {
	turnOffAllCayman();
	document.getElementById('newlands').setAttribute("class", "active");
	document.getElementById('content-details-savannahnorthwardnewlands').style.display = 'block';
	document.getElementById('photo-large-savannahnorthwardnewlands').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=40');
}

function changeBodyBoddenTown() {
	turnOffAllCayman();
	document.getElementById('boddentown').setAttribute("class", "active");
	document.getElementById('content-details-boddentown').style.display = 'block';
	document.getElementById('photo-large-boddentown').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=50');
}

function changeBodyNorthSide() {
	turnOffAllCayman();
	document.getElementById('northside').setAttribute("class", "active");
	document.getElementById('content-details-northside').style.display = 'block';
	document.getElementById('photo-large-northside').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=60');
}

function changeBodyRumPointCaymanKai() {
	turnOffAllCayman();
	document.getElementById('caymankai').setAttribute("class", "active");
	document.getElementById('content-details-rumpointcaymankai').style.display = 'block';
	document.getElementById('photo-large-rumpointcaymankai').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=60');
}
					
function changeBodyEastEnd() {
	turnOffAllCayman();
	document.getElementById('eastend').setAttribute("class", "active");
	document.getElementById('content-details-eastend').style.display = 'block';
	document.getElementById('photo-large-eastend').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=75');
}
					
function changeBodyCaymanBrac() {
	turnOffAllCayman();
	document.getElementById('caymanbrac').setAttribute("class", "active");
	document.getElementById('content-details-caymanbrac').style.display = 'block';
	document.getElementById('photo-large-caymanbrac').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=80');
	//HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=85');
}
					
function changeBodyLittleCayman() {
	turnOffAllCayman();
	document.getElementById('littlecayman').setAttribute("class", "active");
	document.getElementById('content-details-littlecayman').style.display = 'block';
	document.getElementById('photo-large-littlecayman').style.display = 'block';
	document.getElementById('neighbourhood-count').style.display = 'block';
	HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=90');
	//HTML_AJAX.replace('neighbourhood-count', 'neighbourhood.php?area=95');
}
					


function getBodyImmigration() {
	turnOffAllCayman();
	document.getElementById('content-details-imagration').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
}
function getBodyUsefulInformation() {
	turnOffAllCayman();
	document.getElementById('content-details-usefulinformation').style.display = 'block';
	document.getElementById('photo-large').style.display = 'block';
}



