$(document).ready(function(){
	
	$(".accordion h2:first").addClass("active");
	$(".accordion ul:not(:first)").hide();

	$(".accordion h2").click(function(){
		$(this).next("ul").slideToggle("slow")
		.siblings("ul:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h2").removeClass("active");
	});

});

  function href_direct(targ,selObj,restore){
    eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
    if (restore) selObj.selectedIndex=0;
  }

