/* vim: set ts=2 sw=2 sts=2 et: */
/**
 * CustomJavaScript variables and functions
 */

 
function showRanges() {
	
	document.getElementById("byCat").style.display="none";
	document.getElementById("byRange").style.display="inline";	
	
}

function showCats() {
		
	document.getElementById("byRange").style.display="none";
	document.getElementById("byCat").style.display="inline";	
	
}

/*
 $("#showcat").click(function () { 
      $("#byRange").css("display", "none");
      $("#byCat").css("display", "inline");
    });
	
 $("#showrange").click(function () { 
      $("#byRange").css("display", "inline");
      $("#byCat").css("display", "none");
    });
	
    */
