/*
Filename: funcions.js 
Created: Cinnamon Interactive BV (DC).
Date: Tue Oct 21 14:40:50 CEST 2008
*/ 
$(document).ready(function() {
  $('a.new-window').click( function() { 
            window.open(this.href);  
            return false; 
        }); 
  $('a[@href^=http]').addClass("external").click( function() { 
            window.open(this.href);  
            return false; 
        }); 
 
  $('a[@href$=pdf]').click( function() { 
            window.open(this.href);  
            return false; 
        }); 

});

