
	// Animations
	$("a.tag, #nextslide, #prevslide").hover(function() {
		   $(this).stop().animate({paddingLeft : "10px"},200);
	},function() {
		   $(this).stop().animate({paddingLeft : "2px"},200);
	});

	$("#logo").hover(function() {
		   $(this).stop().animate({marginLeft : "-10px"},200);
	},function() {
		   $(this).stop().animate({marginLeft : "0px"},200);
	});
	
	// --------------------------------------
	// Home Bar Slide Down
	$("#home-container").hover(function() {
		$("#home-container").stop().animate({marginBottom : "57px"},200);
	},function() {
		setTimeout(function() { $('#home-container').stop().animate({marginBottom : "0px"},200)}, 500);
		//$("#home-container").stop().animate({marginBottom : "-20px"},200);
	});
	setTimeout(function() { $('#home-container').stop().animate({marginBottom : "0px"},200)}, 4000);

	// Fade out content
	var hasrolled = "false";
	$("#mainNav").hover(function() {
		hasrolled = "true";
		$(".not-front #contentContainer .page-content").stop().animate({opacity : .45},1000);
	},function() {
		$('.not-front #contentContainer .page-content').stop().animate({opacity : .90},1000);
	});
	/*setTimeout(function() {
		if (hasrolled == "false") {
			$('.not-front #contentContainer .page-content').stop().animate({opacity : .95},3000);
			setTimeout(function() {
				if (hasrolled == "false") {
					$('.not-front #contentContainer .page-content').stop().animate({opacity : .50},1500);
				}
			}, 6000);
		}
	}, 1000);*/


