$(document).ready(function(){
    /**
     * Lightbox
     */
    $('a.lightbox').lightBox({
        overlayOpacity: 0.6
    }); 

    /**
     * Form input auto-focus
     */
    $('form.autofocus:not(.filter) :input:visible:first').select()
    
    /**
     * qTip2
     */
    var qtipStyle = 'ui-tooltip-dark';
    $("#nav .twitter").qtip({
        position: {
            my: 'bottom right',
            at: 'left center'
        },
        style: {
            classes: qtipStyle
        },
        hide: {
            fixed: true,
            delay: 300
        },    
        show: {
            solo: true
        }
    });
    $("#header span").qtip({
        position: {
            my: 'top center', 
            at: 'bottom center'
        },
        style: {
            classes: qtipStyle
        },
        hide: {
            fixed: true,
            delay: 300
        },
        show: {
            solo: true
        }
    });
});
