/*
 * JS for attentionseeking
 */
 $(document).ready(function(){
    
    // open external links in a new window
    $('a[rel="external"]').click( function() {
        window.open( $(this).attr('href') );
        return false;
    });

    // initialise the comment form checker
    wpCommentCheck.init();
    
    
    // initialise the home page work listings
    if ($('body#work').length > 0) {
        slideShow.init({
            form : 'form#work-listing',
            select : '#project',
            remove : 'input.button'
        });
    }
});


