jQuery.noConflict();     
jQuery(document).ready(function($){
	$(".nav li").hover(
		function () {
	        $(this).addClass("Hover");
	    }, 
	    function () {
	        $(this).removeClass("Hover");
	    }
	);   //closes navigation js
	
	$('a.top').click(function(){
	     $('html, body').animate({scrollTop: '100px'}, 300);
	     return false;
	});  //closes back to top js
	
	// Checks for Admin to apply fixes for backend
	if ( $('#adminbar #toolbar').length ) {
	
		$("#content").css({
			'padding-top' : '0',
			'padding-bottom':'40px'
			});
		$("#contactForm h2.formTitle").css({
			'margin-top' : '0'
			});
		$(".subFeaturesBox").css({
			'padding-top' : '0',
			'margin-top':'-30px'
			});
		
	}
	else {}


});

