/*jslint browser: true, eqeqeq: true, undef: true */
/*global $ */
/******************************************************************************
Lines above are for jslint, the JavaScript verifier.  http://www.jslint.com/
******************************************************************************/

$(document).ready(function(){
	$('.menu ul li').hover(
		function() {
			$(this).addClass("active");
			$(this).find('ul').stop(true, true);
			$(this).find('ul').slideDown();
		},
		function() {
			$(this).removeClass("active");
			$(this).find('ul').slideUp('fast');
		}
	);
});
