
jQuery(document).ready(function() {
	jQuery(function() {
		jQuery(".see_all_listings").click(function(){
			var idSeeAll = jQuery(this).attr('id');
			jQuery("#"+idSeeAll).remove();
			var idSeeAll_numPart = idSeeAll.substring(9);
			jQuery("#listings_title_"+idSeeAll_numPart).unbind("click");
			jQuery.get("/ajax_see_all_listings.php?numPart="+idSeeAll_numPart, function(data){
				jQuery("#rest_spans_"+idSeeAll_numPart).html(data);
			});
		});

		jQuery(".see_all_listings_title_link").click(function(){
			var idSeeAll = jQuery(this).attr('id');
			var idSeeAll_numPart = idSeeAll.substring(15);
			jQuery("#listings_"+idSeeAll_numPart).remove();
			jQuery("#listings_title_"+idSeeAll_numPart).unbind("click");
			jQuery.get("/ajax_see_all_listings.php?numPart="+idSeeAll_numPart, function(data){
				jQuery("#rest_spans_"+idSeeAll_numPart).html(data);
			});
		});
	});
});