function toggleListing(listing_id)
{
	var listing = $(listing_id);

	if (listing)
		listing.toggle();
}
