$(document).ready(function(){
   
	
	// Grab the link and load it into the callback function
	$(".navLink").click(function() {
	        var target = $(this).attr('href');
	        $("li").removeClass("selected");
			if (target=="#"){
				$("#menu").animate({
					left: "0px"
				}, 900 );
				$(this).parent().addClass("selected");
			}
			if (target!="#"){
				$("#menu").animate({
					left: "70px"
				}, 900, function() {
		            window.location = target;
		        });
			}        
	    return false
	});
	
	// Grab the link and load it into the callback function
	$(".subNavLink").click(function() {
        var target = $(this).attr('href');
		$("#menu").animate({
			left: "70px"
		}, 900, function() {
	            window.location = target;
	    });        
	    return false
	});
	
//closes doc ready	
});

