Cufon.replace('.dd ul li a', { fontFamily : 'Rockwell MT Condensed', hover : { color:'#ffffff' } });
Cufon.replace('.box h2', { fontFamily : 'Rockwell MT Condensed', textShadow: '4px 3px #342a1d' });

Cufon.replace('#content h1, #content h2, #content h3, #content h4', { fontFamily : 'Rockwell MT Condensed' });
Cufon.replace('.mission h2', { fontFamily : 'Rockwell MT Condensed', textShadow: '2px 2px #787465' });



jQuery(function ($) {
	$("#navigation ul li").hover(function() {
		$(this).css({ 'z-index' : 100 });
		$(this).find(".dd").show();
		$(this).find("a:eq(0)").parent().addClass('hover');
	}, function() {
		$(this).css({ 'z-index' : 1 });
		$(this).find(".dd").hide();
		$(this).find("a:eq(0)").parent().removeClass('hover');
	});
	
	// $('#hidden-nav a').css('opacity', '0');
	$('#hidden-nav a').hover(function() {
		$('#navigation ul li a.' + $(this).attr('rel')).parent().mouseenter();
	}, function() {
		$('#navigation ul li a.' + $(this).attr('rel')).parent().mouseleave();
	});
});
