		Cufon.replace('a', {hover: true});
		
		Cufon.replace('#soon', {hover: true});
		/*$(function() {
			// opacity set to 70%
			$("#nav a").css("opacity","0.7"); 
			// on mouse over
			$("#nav a").hover(function () {
			 // set opacity to 100%
			$(this).stop().animate({
			opacity: 1.0
			}, "slow");
			},
			// on mouse out
			function () {
				// set opacity back to 70%
				$(this).stop().animate({
				opacity: 0.7
				}, "slow");
			});
		});*/
	$(function(){
        // make sure your h2's have a position relative
        $('#nav li, #logo').css({left:'-400px'})

        jQuery.easing.def = 'easeInOutQuint';
        setTimeout(animate, 400);
    });

    function animate()
    {
        $('#logo').animate({left:0}, 500);
		$('.nav1').animate({left:0}, 1000);
		$('.nav2').animate({left:0}, 1500);
		$('.nav3').animate({left:0}, 2000);
		$('.nav4').animate({left:0}, 2500);
		$('.nav5').animate({left:0}, 3000);
		$('.nav6').animate({left:0}, 3500);
                $('.nav7').animate({left:0}, 4000);

    }
	
