
Cufon.replace("header nav>ul>li>a, .largeBlack, .largeGrey, #mainShell h1, #mainShell h2, blockquote.green cite strong");
Cufon.replace(".powerPhraseDetails .slideLargeText, .powerPhraseDetails .slideMediumText, #sliderShell .page_title", { textShadow: "1px 1px #000" });

$(document).ready(function() {
						   
	//Add a Last Item class to a few things
	$("nav ul li:last-child").addClass("lastItem");
			
	//hide subnav container if empty
	if ( $("#subNav").has("ul").length ) {  /* display */ }
		else { $("#subNav").hide(); }

	$("header nav>ul>li>ul>li>a").hover(
		function(){
			$(this).animate({ left: "5px" }, 200 );
		},
		function(){
			$(this).animate({ left: "0px" }, 200 );
		}
	);

});
