// JavaScript Document
$(document).ready(function(){
	
	
   		$('#nav li:has(ul)').hover(
		function(e){
				var children = $(this).children();
				var child = children[1];
				$(child).slideToggle('fast', checkComplete);
			
				e.preventDefault();
		},
		function(e){
			if (checkComplete){
				var children = $(this).children();
				var child = children[1];
				$(child).slideToggle('fast');
			
				e.preventDefault();
			}
		}
	)
   
   	function checkComplete(){
   		return true;
   	}
   
 });