$(document).ready( function()
{
	$('a[@rel=newwindow]').click( function() {
		window.open(this.href);
		return false;
	}
	);
}
);
