//grabs our latest listings
jQuery(document).ready(function() {
	//display a loading image, then ajax our sales in
	$("#recent_sale_additions").html("<img src='/static/images/blue_progress.gif' alt='retrieving latest sales' style='padding-top:7px;' />");
	$("#recent_sale_additions").css({'display': 'block','text-align': 'center'});
	//now go get our latest listings!
	$.ajax({
		type: "GET",
		url: "/listing/latest/main/",
		data: "number_to_display=3",
		timeout: 30000,
		success: function(data){
			//load our comments div with the data
			$("#recent_sale_additions").html(data);
			$("#recent_sale_additions").css({'display': 'block','text-align': 'left'});
		},
		error: function(XMLHttpRequest, textStatus, errorThrown){
			$("#recent_sale_additions").css({'display': 'none'}); //hide it if we have an error
		}
	});
});