// JavaScript Document
function colorize(){
	document.getElementById("largei").style.backgroundPosition = "-29px 0px";
	document.getElementById("smalli").style.backgroundPosition = "-15px 0px";
	document.getElementById("vline").style.backgroundPosition = "-3px 0px";
	document.getElementById("hline").style.backgroundPosition = "0px -3px";
}

function decolorize(){
	document.getElementById("largei").style.backgroundPosition = "0px 0px";	
	document.getElementById("smalli").style.backgroundPosition = "0px 0px";	
	document.getElementById("hline").style.backgroundPosition = "0px 0px";	
	document.getElementById("vline").style.backgroundPosition = "0px 0px";	
}

//GOOGLE MAPS
function load() {
  if (GBrowserIsCompatible()) {
	var html = "Restaurant Cuistot";
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(51.134231541104825, 4.566986560821533), 15);
	map.addControl(new GLargeMapControl());
	var point = new GLatLng(51.134999019545724,4.565334320068359);
    var marker = createMarker(point,html,html);
	map.addOverlay(marker);
	marker.openInfoWindowHtml(html);
  }
}

function createMarker(point,name,html) {
	var marker = new GMarker(point);
	GEvent.addListener(marker, "click", function() {
	  marker.openInfoWindowHtml(html);
	});
	return marker;
}

//END GOOGLE MAPS
