/* ---------------------------------------------------------------------------

                     FC | FEDERSPIEL CONTROLS
                     
    filename         : /_js/open_external.js
    description      : JavaScript that appends a special icon to external links
                       and makes external links open in a new window
		dependence       : jQuery and "a.external" style definition in 
		                   /_css/global.css
    version          : 11.09.2009
    author           : Pavel Chovanec
    
  ---------------------------------------------------------------------------- */

	function openExtLink() {
	  var ourURL = location.protocol + '//' + location.hostname;
		$('a[href^=http://]').not('[href^=' + ourURL + ']').addClass('external');
		//$('a[href^=http://]').not('[href^=' + ourURL + ']').attr('target','_blank');
	}
	