/*------------------------------------------------------------------------------*/
function bootstrap()
{
    
    initVerticalFollowing("#secondary_identifier","#secondary");
    initColorBoxNextGen();
    improveFades();
    
}

/*------------------------------------------------------------------------------*/
function initColorBoxNextGen()
{
    $("a[rel='colorbox']").colorbox({
        opacity:0.8,
        maxHeight:'95%'
    });
}

/*------------------------------------------------------------------------------*/
function improveFades()
{
    doFade(".fadeOutInItem1","0.1","1","fast");
    doFade(".fadeOutInItem3","0.3","1","fast");
    doFade(".fadeOutInItem5","0.5","1","fast");
    doFade(".fadeOutInItem8","0.8","1","fast");
    doFade(".fadeOutInItem9","0.9","1","fast");
    doFade(".ngg-gallery-thumbnail","0.8","1","fast");
    doFade("#menu-navigation-gauche li","0.8","1","fast");    
    doFade(".entry-content ol li a","0.8","1","fast");    
}

/*------------------------------------------------------------------------------*/
function doFade(selector,from,to,speed)
{
    $(selector).stop().fadeTo(speed,from);
    $(selector).hover(function () {
        $(this).stop().fadeTo(speed,to);
    },
    function () {
        $(this).stop().fadeTo(speed,from);
    }
    );
}
