

$(document).ready(function() {	
	
	$('A[rele="external"]').click( function() {
		
		//opens the link in new window
        window.open( $(this).attr('href') );
        return false;
    });
});	
