/**
 * @version 200912101319
 * @author  Rolf den Hartog - development@rolfdenhartog.nl
 */

$(function(){
    // show external links in new tab/window
    $('a').click(function(){
        // check for http / https
        if (
            $(this).attr('href').substring(0, 4) == 'http' ||
            $(this).attr('href').substring(0, 5) == 'https'
        )
        {
            // open in new window
            $(this).attr('target', 'new');
        }
    });

    // input focus
    $('input[type=password], input[type=text], textarea').focus(function(){
        $(this).addClass('focus');
    }).blur(function(){
        $(this).removeClass('focus');
    });
});

