function loadInteractiveMap() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(23, 10), 1 );

		map.addControl(new GSmallMapControl());
		new GKeyboardHandler(map);

		setTimeout(function(){
			var geoXml = new GGeoXml("http://www.kosovothanksyou.com/maps/recognitions.kml.php", 
			function(){
				if(!geoXml.loadedCorrectly()){
//				   document.getElementById("mapMsg").innerHTML = "There was a problem loading the countries information. Please try again later";
				}
			});
			map.addOverlay(geoXml);
		}, 1000);

	}
}




function loadIndexPage(){
	updateMessage();
	$("a#messageRandomBtn").click(function(){
		$("div#messageWall").html("<p>Loading...</p>");
		updateMessage();

	});
}

function updateMessage(){
	var tsTimeStamp= new Date().getTime();
	var file = 'messages/messages_homepage.inc.php';
	$.get(file, {rand:1, time:tsTimeStamp},
	function(data){
		$("div#messageWall").html(data);
		pageTracker._trackPageview(file);
	});
}