var SolDropDowns = {
  
  busy:false,
  target:'#mainnav_items',
  
  init:function() {
  	$("ul" + this.target + " li a").each(function(){
  	 var subnav = $(this).parent().find('ul:first');
  	 if(subnav.length > 0) {
        $(this).hover(function(){
          $(this).parent().addClass('active');
          if( ! SolDropDowns.busy ) {
            SolDropDowns.busy = true;
            subnav.slideDown('fast');
            SolDropDowns.busy=false; 
            
            $(this).parent().hover(function(){},
            function(){
              subnav.hide();
              $(this).removeClass('active');
            });
          }
        },
        function(){
          
        });
      }
  	});
  } // init
  
}; // SolDropDowns

$(document).ready(function(){ SolDropDowns.init(); });
