jQuery.noConflict();     
jQuery(document).ready(function($){

	// Navigation Drop Downs
	// $(".nav li").hover(
	//   function () {
	//         $(this).addClass("Hover");
	//       }, 
	//       function () {
	//         $(this).removeClass("Hover");
	//       }
	//     );
	
	// Admin Only JS
	var adminView = $('#adminbar #toolbar').length;
	if (adminView) {
		$("#topBanner").css({"position":"absolute","top":"150px"});
	}
	
	$("ul.nav li:last-child").css({margin:"0"});

});