function doVenue(id){
	//alert("call gallery " + id);

	$.ajax(
	{
		url: "pages/venue_info.php?gal_id="+id,
		cache: false,
		success: function(html)
		{
			document.getElementById("box1").innerHTML = html;
		}
	});

	$.ajax(
	{
		url: "pages/floor_plans.php?gal_id="+id,
		cache: false,
		success: function(html)
		{
			document.getElementById("box4").innerHTML = html;
			$("#floorPlan").jqGalScroll();
			
		}
	});

}

function doEvents(id){
	//alert("call gallery " + id);

	document.getElementById("box1").innerHTM = "Loading ...";
	$.ajax(
	{
		url: "pages/events_info.php?gli_id="+id,
		cache: false,
		
		success: function(html)
		{
			document.getElementById("box1").innerHTML = html;
		}
	});

}

function doServices(id){
	//alert("call gallery " + id);

	$.ajax(
	{
		url: "pages/services_info.php?gli_id="+id,
		cache: false,
		
		success: function(html)
		{
			document.getElementById("box1").innerHTML = html;
		}
	});
}