$(document).ready(function() {

    // set jquery marker for css tricks

    $('html').addClass('jq');

    // mobile browser?

    if ($.browser.mobile) {
        $('html').addClass('mobile');
    }

    // attach fancybox

    $('a[rel^="lightbox"]').fancybox({
        'overlayColor': '#222',
        'overlayOpacity': 0.9,
        'titlePosition' : 'inside'
    });

});


