// JavaScript Document
$(document).ready( function() {
var conf = {
className : 'external'
};
$('a.blank').click(function() {
window.open(this.href, "_blank");
return false;
})
.addClass(conf.blank);
});

