jQuery.noConflict();

jQuery(document).ready(function($){

	$("#nav ul li").hover(function() {
	
		$(this).find("ul").css({"display":"none"}).fadeIn(300);
	
	}, function() {
	
		$(this).find("ul").fadeOut(100);
	
	});

});
