jQuery.noConflict();     
jQuery(document).ready(function($){
   	$(".nav li").hover(
		function () {
	        $("ul", this).fadeIn("fast");
	    }, 
	    function () {
	        $("ul", this).fadeOut("fast");
	    }
	);   //closes navigation js
});
