function outerlinkHelper(){
	
	/**
	 * Private variables
	 */
	var self = this;
	
	/**
	 * Constructor
	 */
	var construct = function(){
		self.render();
	}
	
	/**
	 * Render 
	 */
	this.render = function(){
		$('a').each(function(){
			if( $(this).attr('rel') == 'outerlink' ) {
				$(this).click(function(e){
					window.open( $(this).attr('href') );
					return false;
				})
			}
		})
	}
	
	construct();
	
}
