$(function(){
	$('#dialog-moreinfo').hide();
	
	$('#contact-form-send').live('click', function(){
		$.ajax({
			url: '/sendmessage.ajax.php',
			data: $('#contact-form').serialize(),
			type: 'POST',
			success: function(data) {
				$('#contact-form').html(data);
			}
		});	
		
		return false;
	});
});

function showGoogleMap(xyz, text)
{
	if( xyz == 'none' )
	{
		return;
	}
	
	lat = xyz.split(':')[0];
	lng = xyz.split(':')[1];
	
	if( GBrowserIsCompatible() )
	{		
		var map = new GMap2(
			document.getElementById('map_canvas'),
			{
				'size': new GSize(635,440)
			}
		);
		map.setUIToDefault();
		var point = new GLatLng(lat, lng);
		map.setCenter(point, 15);
		var marker = new GMarker(point);
		map.addOverlay(marker);
		marker.openInfoWindowHtml(text);
	}
}

function showInfo(id, xyz, text)
{	
	$.ajax({
		url: '/moreinfo.ajax.php',
		data: {'id':id},
		type: 'POST',
		success: function(data) {
			$('#dialog-moreinfo').html(data);
			
			$('#dialog-tabs').tabs();
			
			if( typeof xyz != 'undefined' )
			{
				showGoogleMap(xyz, text);
			}
						
			$('#dialog-moreinfo').dialog({
				'height': 550,
				'width': 700,
				'modal': true,
				'resizable': false
			});
		}
	});
}

