$(function(){
	$("div.sort_links").css({'display' : 'none'});
	$("div.sort_select").css({'display' : 'block'});
	
	$("div.sort_select select:sort").change(function(){
		location.href = this.value;
	});
});