// startup

  window.addEvent('domready', function(){
  var list = $$('area');
  
  list.each(  function(element) {
    var url = element.getProperty('href') + "&type=234";       
    var newurl = "moobox('" + url.replace(/#c/, "?ce=") + "');";
    
    element.setProperty('onclick',newurl + ' return false;');
    element.setProperty('href','javascript:' + newurl);
       
  });

});


function moobox (url) {
  MOOdalBox.open( // case matters
  url, // the link URL
  "", // the caption (link's title) - can be blank
  "700 500" // width and height of the box - can be left blank
  );
}

