/*
 * Copyright (C) SiteVision 2011, all rights reserved
 */

/**
 * @author Albin Öhrn
 *         : 1 $: Revision of last commit
 *         Albin: albin $: Author of last commit
 *         2011-09-29: Aug 12, 2009 10:45:11 AM +0200 (Sat, 18 Apr 2009) $: Date of last commit
 */
$svjq(function() {
   $svjq('a[rel="external"]').each(function(index) {
      var link = $svjq(this);
      if (link.is('.sv-text-portlet-content *'))
         return;
      
      if (link.attr('href')) {
         link.attr('target', '_blank');
      }
   });
});

