// JavaScript Document


// dropdown function - call when needed
$(function () {
	
	$('.dropdown').each(function () {
		$(this).parent().eq(0).hoverIntent({
			timeout: 0,
			over: function () {
				var current = $('.dropdown:eq(0)', this);
				current.slideDown(200);
			},
			out: function () {
				var current = $('.dropdown:eq(0)', this);
				current.slideUp(100);
			}
		});
	});
});
