jQuery.noConflict();     
jQuery(document).ready(function($){
	$("#timesLocation").click(function(){
		$("#fadeOut").fadeIn();
		$("#dropDown").slideDown();
		return false;
	});
	$("#closeDD").click(function(){
		$("#fadeOut").fadeOut("fast");
		$("#dropDown").slideUp();
		return false;
	});
	$("#fadeOut").click(function(){
		$("#fadeOut").fadeOut("fast");
		$("#dropDown").slideUp();
		return false;
	});
	$("#showMenu").click(function(){
		$("#menuStuff").fadeIn("slow");
		$(".iphonenav").animate({ paddingLeft: "5%" }, 500);
		$("#showMenu").fadeOut("slow");
		return false;
	});
	$("#closeMenu").click(function(){
		$("#menuStuff").fadeOut('fast');
		$("#showMenu").fadeIn('fast');
		$(".iphonenav").animate({ paddingLeft: 0 }, 2000);
		return false;
	});
	// 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 ) {
			
		$("#iphoneWelcome").css({
            "display": "block"
        });
	}
	else {}
	
});

