$(document).ready(function(){ 
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 100,
			over: function () {
				$('.dropdown:eq(0)', this).slideDown(100);
			},
			out: function () {
				$('.dropdown:eq(0)', this).hide();
			}
		});
	});
});