$(document).ready(function() {

	$("div#menu ul > li").mouseover(function() {

//alert($(this).attr("class"));



		if ($(this).attr("class").indexOf("active") == -1) {
			
			/*
			
			$("div#menu ul > li").children("ul").each(function(i,n) {
				if ( $(this).parent().attr("class").indexOf("active") > -1 ) {
					$(this).slideUp("normal");
					
					$(this).toggleClass("active");
					$(this).parent().toggleClass("active");

				}

			});
			
			if ($(this).children("ul").children().length > 0) {
				$(this).children("ul").slideDown("normal");

				$(this).toggleClass("active");
				
			}
			*/

		}
		
	});

});
