// JavaScript Document

$(document).ready(function(){

    $('a.new-window').click(function(){
    
    window.open(this.href);
    
    return false;
    
    });
    
    $('a.screenshot').click(function(){
    
    window.open(this.href);
    
    return false;
    
    });    

});
