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