// Copyright 2010 htmldrive.net Inc.
/**
 * @projectHomepage http://www.htmldrive.net/go/to/link-external-icon
 * @projectDescription Show external link icon
 * @author htmldrive.net
 * More script and css style : htmldrive.net
 * @version 1.0
 * @license http://www.apache.org/licenses/LICENSE-2.0
 */
<script type='text/javascript'>
<!--
	(function($)
	{
		$(document).ready(function()
		{
			$("a[target='_blank']").addClass('external_icon');
			$("a[target='_blank'] img").parent().removeClass('external_icon');
			$("a[target='_blank'].no_external_icon").removeClass('external_icon');
		});
	}(jQuery));
//-->
</script>

