/* Javascript */

function changePic(img_path){
    $('#bigpic').children('img').fadeOut(function(){
        $('#bigpic').children('img').attr('src', img_path);
        $('#bigpic').children('img').fadeIn('slow');   
    });
};



$(document).ready( function() {

    $("#projects a").append('<img src="/img/layout/link_external.png" style="margin: 0 0 -2px 4px" />');
    
    $("div.teaser:first").css('margin-top', '0');
    
    $("div.teaser:last").css('margin-bottom', '4em');
    
    $(".zoom").fancybox({
        'zoomSpeedIn': 1000, 
        'zoomSpeedOut': 0, 
        'overlayShow': false,
        'hideOnContentClick': true,
        'overlayOpacity': 0.7
    });
    
});
