

$(document).ready(function() {
	
	function is_touch_device() {  
  		try {  
    		document.createEvent("TouchEvent");  
    		return true;  
  		} catch (e) {  
    		return false;  
  		}  
	}
	
	if (is_touch_device()) {
	    $('a.menuitem').each(function() {
	        var clicked = false;
	        $(this).bind('click', function() {
	            if(!clicked) return !(clicked = true);
	        });
	    });
	};
	
	$("#nav li ul").hide(); 
	$("#nav li").hover(
		
		function() { $(this).children("ul").stop('true','false').fadeIn();},
	  	function() { $(this).children("ul").stop('true','false').fadeOut();},
	  	function() { $(this).children("ul").fadeIn('800'); },
	  	function() { $(this).children("ul").fadeOut('800'); }
	  	
	);
});

