
$(function () {
					
	/*$('.dropdown').each(function () {			
		var o = $(this).parent().eq(0);
		
		o.hover(
		  function () {
			var current = $('.dropdown:eq(0)', this);
			current.stop().slideDown(100);
		  }, 
		  function () {
			var current = $('.dropdown:eq(0)', this);
			current.stop().slideUp(100);	
		  }
		); */
		
		  $('.dropdown').each(function () {
                $(this).parent().eq(0).hoverIntent({
                   timeout: 100,
                    over: function () {
                     var current = $('.dropdown:eq(0)', this);
                         current.slideDown(100);
                    },
                     out: function () {
                          var current = $('.dropdown:eq(0)', this);
                             current.slideUp(100);
                       }
          });	
		
	});

});
