/********************************************/
/*	jquery.externallink.js
/*	author: davide reppucci
/*	author uri: http://www.gdlabs.it
/*******************************************/

externalLink = function() { this.init(); }

jQuery.extend(externalLink.prototype, { init: function() { var links = jQuery('.external'); for( i = 0; i < links.length; i++ ) { links[i].onclick = function() { window.open( this.href ); return( false ) }; } } });

