$.extend(jQuery, new HousingListingDrilldown());
function HousingListingDrilldown() {
	$(document).ready(function(){$.ImageBox.init();});
	this.flagListing = function(id){
		listing_id = id;
		$.ajax({
			type: "POST",
			url: "/listings/HousingListingDrilldownComponent",
			data: 't=h'+'&i='+id,
			success: this.success,
			error: this.error
		});
	}
	
	this.success = function(xml){
		if($('status', xml).text() == 'ok'){
			$('#flag_container').empty();
			$('#flag_container').append('<span style="color:red;font-weight:bold;">flagged</span>').fadeIn();
		}
	};
	
	this.error = function(){};
}