/**
 * @version 200
 * @author  Rolf den Hartog - rolf@rolfdenhartog.nl
 */

$(function(){
    // open new window if href starts with 'http'
    $('a[href^=http]').click(function(){
        // add attribute target
        $(this).attr('target', '_blank');
    });
});

