/* $Id: bcnplus.js,v 1.2 2009-05-13 07:14:22 bram Exp $ */

// PNG's vervangen
if ($.browser.msie && $.browser.version < 7) {
  $("img[src$=png]").each(function(){
    this.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+ this.src +"')";
    this.src = this.src.replace(/[^\/]+\.png$/i, "trans.gif");
  });
}

// pdfs altijd openen in een nieuwe pagina
$("a[href$=.pdf]").click(function(){ var popup = window.open(this.href); return false; });
