function showMap(uid){
	xmlHttp_showMap = GetXmlHttpObject();
	if(xmlHttp_showMap == null)
 	{
 		alert ("Browser does not support HTTP Request");
 		return;
 	}
	
	var url = "mgdphp/read_map_item.php";
	url += "?sid=" + Math.random();
	url += "&uid=" + uid;
	
	xmlHttp_showMap.open("GET", url, true);
	xmlHttp_showMap.onreadystatechange = stateChanged_showMap;
	xmlHttp_showMap.send("");	
}

function stateChanged_showMap(){ 
	if(xmlHttp_showMap.readyState==4 || xmlHttp_showMap.readyState=="complete"){
		dijit.byId("map_content").set("content", xmlHttp_showMap.responseText);
		dijit.byId("mapDialog").show();
	}
}

function setBackColorOver(divItem){
	divItem.style.backgroundColor='#eefbd7';
}

function setBackColorOut(divItem){
	divItem.style.backgroundColor='#ffffee';
}

$(function() {
	$('#sponsors').slidy({
		height: 175,
		width: 180,
//		height: auto,
//		width: auto,
		animation:	'fade',
		cursor:		'pointer',
		time: 15000,
		pause: true
	});

});
