$(document).ready(function(){
    var a = '2011';
    
    $("#content-articles a img").hover(
        function () {
            $(this).fadeTo('fast', 0.7);
        },
        function () {
            $(this).fadeTo('slow', 1);
        }
        );
            
    $(".year span").click(
        function () {
            $('.year span').removeClass('selected');
            $(this).addClass('selected');
            
            b = $(this).attr('rel');
            
            $('.month a').each(function(i){
                    $(this).attr('href', $(this).attr('href').replace(a, b));
            })    
            
            a = $(this).attr('rel');
            
            $('.month a').html().replace( /year/gi, $(this).attr('rel').toString());
    });
            
    $("a.image").fancybox();
    
    $('#nivo-slider').nivoSlider({
        controlNavThumbsFromRel:true
    });
});
