/*
	Javascripts
	i-Aspect
*/


function setNewWindow() {
      $$('#voet-inhoud a').each(function(element){
         element.onclick=function(){
            window.open(this.href);
            return false;
         }
      });

   }


/* load events */
Event.observe(window,'load',function(){
   setNewWindow();
});
