

// Opening links in the new windows - rel="ext"
$(function() {
$('a[rel*=ext]').click( function() {
window.open(this.href);
return false;
});
});
