// - pridat do hlavicky sablony
//  <script type="text/javascript" src="/lib/jquery/jquery.js"></script>
//  <script type="text/javascript">
//  {literal}
  $(document).ready(function() {
  $('#content a:not(:has(img))').filter(function() {
	return this.hostname && this.hostname !== location.hostname;
  }).after('&nbsp;<img src="/images/cms/external.png" alt="external link">');
  });
//  {/literal}
// ZDROJ: http://www.learningjquery.com/2008/08/quick-tip-dynamically-add-an-icon-for-external-links
