$(function(){
    // Superfish
    $('ul.sf-menu').superfish({ 
        delay:       100,                            // one second delay on mouseout 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        speed:       'fast',                          // faster animation speed 
        autoArrows:  false,                           // disable generation of arrow mark-up 
        dropShadows: false                             // disable drop shadows 
    });

    // Blur on focus
    $('a').focus(function() { this.blur(); });
    $('input[@type*=submit]').focus(function() { this.blur(); });
    $('input[@type=text], input[@type=password]').addClass("input");
	
	// li:not #nav_node10102
	/*
	$("#nav li:not(li#nav_node10102)").each(function(){
					  	if( $(this).children("ul").length > 0 ) {
							var thing = $(this).find("ul a").attr('href');
							if (thing) {
								$(this).find("a").attr('href', thing);
							}
							console.log(thing);
						}
						// alert(  $(this).children("ul").length );
						
					  });
	*/
	$("#nav li#nav_node10102 ul").html("");
	
	
	if( $("#nav li#nav_node10102 a").hasClass("active") )
	  {
		 $("#sub_menu").css("display","none"); 
	  }
});