jQuery.noConflict();     
jQuery(document).ready(function($){
	// Navigation Drop Downs
	$(".nav li").hover(
	  function () {
        $(this).addClass("Hover");
      }, 
      function () {
        $(this).removeClass("Hover");
      }
    );	
	// // Checks for Admin to apply fixes for backend
	// if ( $('#adminbar #toolbar').length ) {
	// 	
	// 	// run code here for admin
	// }
	// else {
	// 	
	// 	// run code here for front side
	// }	
});
