
(function($){
    
    //$('#featured-images img').css('opacity', 0);
    
    $(window).load(function(){

        if ($('body').is('.home')) {

            var featured = $("#featured-images").carouFredSel({
                items : 1,
                direction : "left",
                scroll : {
                    effect : "easeOutBounce",
                    duration : 1000,
                    pauseOnHover : true,
                    onBefore: function(){
                        $('#featured-projects .project').fadeOut('fast');
                    },
                    onAfter: function(){
                        $('#featured-projects .project').eq(featured.current_position()).fadeIn('fast');
                    }
                },
                prev : {	
                    button : "#nav-left",
                    key : "left"
                },
                next : { 
                    button : "#nav-right",
                    key : "right"
                },
                pagination: "#featured-projects-pager"
            });

            $('#featured-images img').animate({opacity: 1}, 500);
            $('#featured #nav-left').animate({left: '-47'}, 500);
            $('#featured #nav-right').animate({right: '-47'}, 500);
            $('#featured-projects').find('.project:first').show().end().fadeIn('fast');
        }
    });

})(jQuery);
