Cufon.replace('h1', { fontFamily: 'Humanst521 Lt BT', color: '-linear-gradient(#ffffff, #cccccc)' });;
Cufon.replace('header nav a', { fontFamily: 'Humanst521 Lt BT', textShadow: '1px 1px rgba(0, 0, 0, 0.2)' });;
Cufon.replace('#container nav ul li a', { fontFamily: 'Humanst521 Lt BT', textShadow: '1px 1px rgba(0, 0, 0, 0.2)' });;
Cufon.replace('h2', { fontFamily: 'Humanst521 Lt BT'});;
Cufon.replace('h3', { fontFamily: 'Humanst521 Lt BT'});;
Cufon.replace('.news li figure', { fontFamily: 'Humanst521 BT'});;

$(function() {
		// set opacity to nill on page load
		
		$("header nav ul li a").css("opacity","0.75");
		// on mouse over
		$("header nav ul li a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0.75
			}, 'slow');
		});
	});
$(function() {
		// set opacity to nill on page load
		
		$("container nav ul li a").css("opacity","0.75");
		// on mouse over
		$("#container nav ul li a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				opacity: 0.75
			}, 'slow');
		});
});

