var externalLinks = new Class({
	
	
	Implements: [Options],
	
	
	options: {
		
	},
	
	
	initialize: function(linkClass, options) {
		
		
		this.setOptions(options);
		this.linkClass = linkClass;
		
		
		$$(this.linkClass).each(function(el) {
			el.addEvent('click', function(e) {
				e = new Event(e);
				e.stop();
				window.open(this.getProperty('href'));
			}.bind(el));
		}.bind(this));
	}
	
	
});

