	
	function changeContentOn(island){
		//alert(island);
		if(island == "I1"){
			document.getElementById("isMap").src = "/graphics/greece_map_crete.gif";
			document.getElementById("isPic").src = "/images/cre_makrigialos_rivercott_1.jpg";
			document.getElementById("isHeader").innerHTML = "Crete";
			document.getElementById("isText").innerHTML = "The most southerly Greek island enjoying sunshine from April to November. Charming Venetian harbours, deep gorges, rugged mountains and sandy beaches combine with a wealth of history and culture.";
			//document.getElementById("isLink").href = "http://www.google.com";
		}else if(island == "I2"){
			document.getElementById("isMap").src = "/graphics/greece_map_santorini.gif";
			document.getElementById("isPic").src = "/images/san_firostefani_sunrocks_1.jpg";
			document.getElementById("isHeader").innerHTML = "Santorini";
			document.getElementById("isText").innerHTML = "Romantic and sophisticated, where unique and elegant hotels on the cliff face offer breathtaking views over the spectacular caldera.";
		}else if(island == "I3"){
			document.getElementById("isMap").src = "/graphics/greece_map_milos.gif";
			document.getElementById("isPic").src = "/images/mil_pollonia_beach_1.jpg";
			document.getElementById("isHeader").innerHTML = "Milos";
			document.getElementById("isText").innerHTML = "Still relatively undiscovered with pretty hilltop and fishing villages, historical sites, stunning views and glorious beaches plus a volcanic heritage to rival that of Santorini.";
		}else if(island == "I4"){
			document.getElementById("isMap").src = "/graphics/greece_map_paros_anti.gif";
			document.getElementById("isPic").src = "/images/nax_aganna_beach_1.jpg";
			document.getElementById("isHeader").innerHTML = "Paros & Antiparos";
			document.getElementById("isText").innerHTML = "Paros and Antiparos - Paros  - an island of picturesque villages, beautiful sunsets and lovely sandy beaches and its tiny neighbour, Antiparos, the perfect 'get away from it all' destination.";
		}else if(island == "I5"){
			document.getElementById("isMap").src = "/graphics/greece_map_naxos.gif";
			document.getElementById("isPic").src = "/images/nax_aganna_beach_1.jpg";
			document.getElementById("isHeader").innerHTML = "Naxos";
			document.getElementById("isText").innerHTML = "An island of many facets combining a Venetian heritage with impressive mountains and hillside villages, a string of sandy beaches and several important archaeological sites.";
		}else if(island == "I6"){
			document.getElementById("isMap").src = "/graphics/greece_map_mykonos.gif";
			document.getElementById("isPic").src = "/images/myk_town_porto_1.jpg";
			document.getElementById("isHeader").innerHTML = "Mykonos";
			document.getElementById("isText").innerHTML = "Cosmpolitan and chic, characterised by its windmills, numerous sandy beaches and dazzling white Cycladic architecture against the azure backdrop of the Aegean.";
		}else if(island == "I7"){
			document.getElementById("isMap").src = "/graphics/greece_map_alonissos.gif";
			document.getElementById("isPic").src = "/images/alo_general_1.jpg";
			document.getElementById("isHeader").innerHTML = "Alonissos";
			document.getElementById("isText").innerHTML = "A tranquil, sleepy island with pretty, secluded coves and where a traditional Greek way of life still exists.";
		}else if(island == "I8"){
			document.getElementById("isMap").src = "/graphics/greece_map_skopelos.gif";
			document.getElementById("isPic").src = "/images/sko_general_2.jpg";
			document.getElementById("isHeader").innerHTML = "Skopelos";
			document.getElementById("isText").innerHTML = "Picturesque and green, with densely forested mountains giving way to lovely beaches. Skopelos town is old and quaint, a maze of narrow cobbled streets and a bustling waterfront";
		}else if(island == "I9"){
			document.getElementById("isMap").src = "/graphics/greece_map_skiathos.gif";
			document.getElementById("isPic").src = "/images/ski_general_1.jpg";
			document.getElementById("isHeader").innerHTML = "Skiathos";
			document.getElementById("isText").innerHTML = "A beach lovers' paradise - perfect for families and couples alike, this lush green island boasts a myriad of delightful sandy beaches and coves.";
		}
	}
	
	function changeContentOff(){
		document.getElementById("isMap").src = "/graphics/spacer.gif";
		document.getElementById("isPic").src = "/images/san_imer_chrom_3.jpg";
		document.getElementById("isHeader").innerHTML = "Islands of Greece";
		document.getElementById("isText").innerHTML = "We arrange holidays to the beautiful verdant islands of Skiathos, Skopelos and Alonissos and, further south, the dramatic and diverse islands of Mykonos, Santorini, Paros, Antiparos, Naxos Crete and Milos.";
		//document.getElementById("isLink").href = "#";
	}
	