jQuery.noConflict();     
jQuery(document).ready(function($){
	// Navigation Drop Downs
	$(".nav li").hover(
	  function () {
	        $(this).addClass("Hover");
	      }, 
	      function () {
	        $(this).removeClass("Hover");
	      }
	    );
});
