$(document).ready(function(){
	
	//Cycle images
	$('#view-listing_image') 
	.cycle({ 
	    fx:     'fade', 
	    timeout: 5000
	});

	$("a[rel=image_group]").fancybox({
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'autoScale'			: true,
		'titleShow'			: false,
		'showCloseButton'	: true,
		'showNavArrows'		: true
	});

	
	
});



function showAddress() {
var latlng = new google.maps.LatLng(lat, lng);
var marker = new GMarker(latlng,{draggable: false});
var map = new GMap2(document.getElementById("view-listing_map"));

map.setMapType(G_HYBRID_MAP);
map.setUIToDefault();
map.setCenter(latlng);
map.setZoom(14);
map.addOverlay(marker);
}
