$(document).ready(function(){
	
	$('#news-cat-filter').change(function(){
		var args = $('#news-cat-filter option:selected').attr('rel');
		location = 'new'+args;
	});
	
	
	$('#type-cat-filter').change(function(){
		var args = $('#type-cat-filter option:selected').attr('rel');
		location = 'type/'+RECORDS_TYPE+args;
	});	
	
});