	$(function() {
			$('img').live("contextmenu", function(e){ return false; })
			$('img').bind("mousedown", function(e){ return false; })			
			$('img').bind('dragstart', function(e) { return false; });

			$("#menu ul li:has(ul)").hover(
				function(){
					$("ul",this).show();
				},
				function(){
					$("ul",this).hide();
				}
			);
	});
