jQuery(document).ready(function(){
	
  jQuery("ul#primary_nav li:first-child+li+li+li+li a").attr("target","_blank");
	
  jQuery("primary ul.menu>li>a").ready(function(){
	  jQuery("#primary ul.menu>li>a").removeAttr("href");
	  jQuery("#primary ul.menu li ul.sub-menu li.current-menu-item a").removeAttr("href");
  });

  jQuery("#primary ul.menu>li>a").click(function(){
	   jQuery("#primary ul.menu>li").css( {"height" : "26px", "overflow" : "hidden" }).addClass("hide").removeClass("show");
	   jQuery(this).parent().css( {"height" : "auto", "overflow" : "visible" }).addClass("show").removeClass("hide");
	   return false;
  });
  
  
  if (jQuery("#content.thespeakers").length) {
	   jQuery("ul#primary_nav li:first-child+li").addClass("singlespeaker");
  }
 
  if (jQuery("#content.singlecharity").length) {
	   jQuery("ul#primary_nav li:first-child+li+li").addClass("singlecharity");
  }
  
});
