function sshideBrowseAll(){
	$(".opticons").hide();
	$(".optdevices").hide();
	$(".cat-hier").hide();
	$(".cat-alpha").hide();
}

$(document).ready(function(){
	$(".ss_filter_options a").click(function(){
		$(this).blur();
		
		$(".ss_filter_options a").removeClass("on");
		
		sshideBrowseAll();
		
		blocktoshow = $(this).attr("class").substr(5);
		$("." + blocktoshow).show();

		if(blocktoshow == "opticons"){ $(".opticons span").load("/smallicons.php", {curcat:"none"}); }
		
		$(this).addClass("on");
		return false;
	});
	
	$(".refresh").click(function(){
		$(this).blur();
	
		$(".opticons span").html('<img src="/i/pinwheel-w.gif" class="load" alt="loading" />');
		$(".opticons span").load("/smallicons.php", {curcat:"none"});
		return false;
	});
});
