function getListing(href)
{
	href = href.replace(/\?ajax=true/, '');
	
	$.scrollTo(0, {duration:500});
	$('#loader').show();
	$('#ajax_page_content').hide();
	$('#ajax_page_content').load(href+'?ajax=true', {}, function() {
		$('#ajax_page_content').show();
		$('#loader').hide();
		pageTracker._trackPageview(href);
	});
	
	return false;
}

$(document).ready(function(){

	// Set all checkbox uncheck buttons
	$('#uncheckall').click(function(){
		$('input[type=checkbox]').attr('checked', false);
		return false;
	})

	// Set all checkbox check buttons
	$('#checkall').click(function(){
		$('input[type=checkbox]').attr('checked', true);
		return false;
	})

})

