/* External Link
########################################################################################*/

var $j = jQuery.noConflict();

$j(function() {

    $j("a.external_link").each(function(i){
        var tmp = $j(this).html();
        $j(this).html( tmp +'<span class="external_icon"> - (Opens in a new window)</span>');
        tmp = null;
    });
	
	$j('a.external_link').click(function(){
		window.open(this.href);
		return false;
	});
    
});
