$.ajax({
	type: "GET",
	// url: "/featured/featured.xml",
	url: "/featuredxml.php",
	dataType: "xml",
	success: function(xml) {
		$(xml).find('listing').each(function(){
			var photo = $(this).find('photo').text();
			var agent = $(this).find('agent').text();
			var address = $(this).find('address').text();
			var price = $(this).find('price').text();
			var amenities = $(this).find('amenities').text();
			var agentphoto = $(this).find('agentphoto').text();
			var detail = $(this).find('detail').text();
			$('<div class="item"></div>').html('<img src="'+photo+'"><a href="'+detail+'" class="info"><img class="agent_photo" src="'+agentphoto+'" alt="'+agent+'"><div class="listed_by"><h3>Listed by</h3><h4>'+agent+'</h4></div><div class="other_info"><h4>'+address+'</h4><h5>'+price+'</h5><p>'+amenities+' <br> <br> <span style="font-size:11px">View Detail Listing</span></p></div> </a>').appendTo('#slideshow');	
			
		});
		$('.slideshow').cycle({
			fx: 'fade',
			pause:   1  // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		});
		$(".item").mouseenter(function(){
			$(this).children(".info").stop(true, true).animate({"right": "-10px"}, "slow");
		}).mouseleave(function(){
			$(this).children(".info").stop(true, true).animate({"right": "-273px"}, "slow");
		});

	}
		
});
