/*
 * Form button rollover script
 * Binary Vein Digital Media (http://www.binaryvein.com)
 */

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

