$(function() {
	
	
	Cufon.replace('#navigation li a, #cont h1.title', {
		hover: true
	});
	
	$('#images li img').each(function () {
		$(this).css({'opacity' : '0.4'});
	});
	
	$('#images li img').hover(function() {
		$(this).stop().animate({
			opacity : 1
		}, 100);
	}, function() {
		$(this).stop().animate({
			opacity : .4
		});
	});
	
	$('.anythingSlider').anythingSlider({
        easing: "linear",        // Anything other than "linear" or "swing" requires the easing plugin
        autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
        delay: 8000,                    // How long between slide transitions in AutoPlay mode
        animationTime: 600             // How long the slide transition takes
    });

});
