jQuery.noConflict();     
jQuery(document).ready(function($){
   	$(".nav li").hover(
		function () {
	        $("ul", this).fadeIn(150);
	    }, 
	    function () {
	        $("ul", this).fadeOut(200);
	    }
	);   //closes navigation js
	
	if ( $('#adminbar #toolbar').length ) {
	    }
	
});
