/*
  $Id: base.js,v 1.6 2010-04-01 11:33:11 bram Exp $
  $Name:  $
*/

// CSS selectors
$("html").addClass("js");
if ($.browser.msie) $("html").addClass("msie");
else if ($.browser.mozilla) $("html").addClass("mozilla");
else if ($.browser.safari) $("html").addClass("safari");
else if ($.browser.opera) $("html").addClass("opera");

// MSIE helpen
if ($.browser.msie) {
  $("ul li:first-child").addClass("first-child");
}

// pdfs altijd openen in een nieuwe pagina
$("#content a[href$=.pdf], .popup").click(function(){ var popup = window.open(this.href); return false; });

// externe links altijd openen in een nieuwe pagina
$("#content a").each(function(){
  if (this.hostname != document.location.hostname) $(this).click(function(){
    var popup = window.open(this.href);
    return false;
  });
});