$(document).ready(function() {

	   $("#scriptsNav .options input").click(function(){
		
			$("#toc_eng, #toc_sp, #toc_child, #toc_juv").hide();
			var scriptCategoryName = $(this).val();
			$.cookie('scriptType', scriptCategoryName);
			$("#"+scriptCategoryName).show();
			
			$("#scriptsNav li").show();
			$(".no-"+scriptCategoryName).hide();
			
			
			switch(scriptCategoryName) {
			case 'toc_eng':
				$("#scriptType").text("Adult's > ");
			break;
			
			case 'toc_sp':
				$("#scriptType").text("Spanish > ");
			break;
			
			case 'toc_child':
				$("#scriptType").text("Children's > ");
			
			break;
			
			}
		
	   }); // end click
});

