/**
 * Script collection 
 * @project Sportfohlenauktion
 * @author  Martin Kutter @ wmk.ch
 * @date    2008-07-14
 * @version 1.0
 * @changelog
 */

$(function(){
 
  // Set target-Attribute for external links
  //$('a[@href^="http://"]').attr('target', '_blank'); 
  
  $('a[@href^=http://]')
    .not('a[@href^="http://sportfohlenauktion.ch"]')
    .not('a[@href^="http://www.sportfohlenauktion.ch"]')
    .attr({ target: "_blank" });
           
  $('a').click(function() {
    this.blur();
  });
 
    
  // PNG-fix for IE < 7
  if ( $.browser.msie && $.browser.version < 7 )
  {
    correctPNG();
  }

});
