jQuery.fn.bsrtable = function(){
	$(this).change(function(){
		var title = $('#listings .title strong').html();
		var pid = window.location.search.substring(window.location.search.indexOf('=') + 1, window.location.search.indexOf('&'));
		var type = window.location.search.substring(window.location.search.indexOf('=', 1) + 1, window.location.search.indexOf('&', 1));
		jQuery.get('/templates/ajax/view.bsrtable.php', { id: pid, t: type, sort: $(this).val(), name: title }, function(data){
			$('#listings').html(data);
		});
	});
}
