/**
 * @author  Andrew Ellis
 * @url     http://www.1three.com/
 */
$(function(){
    $("#selectors a").each(function(){
        href = $(this).attr("href");
        $(href).hide();

        $(this).click(function(){
            $(".scrollable-wrapper").hide();
            $("#selectors .current").removeClass("current");
            $($(this).attr("href")).fadeIn();
            $(this).addClass("current");

            return false;
        });
    });

    $(".scrollable").scrollable();

    $("a[href=#online-advertising]").addClass("current");
    $("#online-advertising").show();

    $(".scrollable-wrapper .item a").colorbox({closePosition:"top"});
});

