$(function() {
    //-------------------------------
    // Menu focus
    var curMenuFocus = '#' + $('#menu_focus').html();
    $('#menu_focus').html('');
    if($(curMenuFocus).attr('id') != undefined)
        $('#menu_focus').animate({left: $(curMenuFocus).position().left, top: 98, width: $(curMenuFocus).width()}, 0);
    else
        $('#menu_focus').remove();

    $('.menu_focus').hover(function() {
        $('#menu_focus').stop(false, false).animate({left: $(this).position().left, top: 98, width: $(this).width()}, 250);
    }, function() {
        curBlock = $(curMenuFocus);
        if($(curMenuFocus).attr('id') != undefined)
            $('#menu_focus').stop(false, false).animate({left: curBlock.position().left, width: curBlock.width()}, 250);
    });
    //-------------------------------
    
    //-------------------------------
    // Articles (agrandissement images)
    $('.art_img').click(function() {
        document.location.href = $(this).attr('src');
    });
    //-------------------------------

    // Gestion galerie - Animation
    $('.album_choix').click(function() {
        var thisID = $(this).attr('id');
        $('#photo_' + thisID).slideDown();
    });
    
    // Alerte infos
    $('.alert_infos').show(800);
    
    // Selection d'unn album
    $('.album_select').click(function() {
        var thisAlbum = $(this).attr('id');
        document.location.href = "index.php?p=galerie&id_gal=" + thisAlbum;
    });
});
