$(function() {
    $('#presentation p').addClass('hyphenate');
    Hyphenator.run();

    var file_match = '[href^="assets/projects/"]';

    $('#work a:not('+file_match+')').fancybox({
        type:   'iframe',
        width:  '100%',
        height: '100%',
        centerOnScroll: true
    });
    $('#work a'+file_match+'').fancybox({
        width:  '100%',
        height: '100%',
        centerOnScroll: true
    });
});

