jQuery(document).ready(function(){

   // jQuery('.down-list').width(jQuery('.dropdown-menu').width()-2);

    jQuery('.dropdown-menu').hover(
      function () {
        jQuery('.menu-first', this).addClass('hover_menu'); 
        jQuery('.down-list', this).slideDown("slow");
      }, 
      function () {
        obj = this;
        jQuery('.down-list', this).fadeOut("100", function(){ 
			jQuery('.menu-first', obj).removeClass('hover_menu'); 
		});
      }
    );
	
	
	 jQuery('.home').hover(
      function () {
        jQuery('.menu-first', this).addClass('hover_menu'); 
      }, 
      function () {
        obj = this;
 
			jQuery('.menu-first', obj).removeClass('hover_menu'); 

      }
    );

});
