$(function(){
    
    // Close bvutton
    $('.close').click(function(){
        $(this).parent().slideUp(); 
    }); 
    
    // Slideshows
    $('.slideshow .thumbs a:first').css('opacity',0.5); 
    $('.slideshow .thumbs a').live('click',function(){
        var link = $(this).attr('href');
        var placeholder = $(this).parents('.slideshow').find('.img');
        if($(this).hasClass('video')){
            placeholder.empty().append('<a href="'+link+'" class="grafplayer 444 240"/>'); 
            $("a[class^='grafplayer']").grafPlayer();
        }else{
            placeholder.empty().append('<img src="'+link+'"/>'); 
        }
        $(this).parents('.slideshow').find('.thumbs a').fadeTo(500,1);
        $(this).stop().fadeTo(500,0.5);
        return false;
    })
    
    // Slides derrière le menu
    $('#slider').nivoSlider({
             pauseOnHover:false, 
             directionNav:false,
             controlNav : false
    });
    
    // Réas
    $('.reas .rea').mouseover(function(){
        $(this).find('.title').stop().animate({top:0},200); 
    });
    $('.reas .rea').mouseout(function(){
        $(this).find('.title').stop().animate({top:-50},200); 
    });
})

