jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("ul.leftmenu>li>ul", this).hover(			
			function(){ jQuery(this).animate({opacity: "1"}); },
			function(){jQuery(this).animate({opacity: "0.9"});}
	);
	
	jQuery("ul.leftmenu>li").hover(function(){
		var pos = jQuery(this).position();	
		var l = pos.left+193;		
		var t = pos.top-1;
		jQuery("ul", this).css({left:l, top:t });
		jQuery("ul", this).show();		
	}, function(){
		jQuery("ul", this).hide();
	});
});
