// apostropheReady is called at domReady
// it hooks into the a_js javascript framework
// it can be used for progressive enhancements at runtime
// such as Cufon text replacement

function apostropheReady()
{
			
	
	// top navigation enhancements 
	$(".a-nav-main .a-nav-item a").hover(function(e){
		e.preventDefault();
		$(this).stop().animate({ 
	    color: "#f39400"
	  }, 225 );
	},function(e){
		e.preventDefault();
		$(this).stop().animate({ 
	    color: "#000"
	  }, 350 );		
	});

}




