// startup

  window.addEvent('domready', function(){
  var list = $$('.news-list-morelink a');
  
  list.each(  function(element) {
    var url = element.getProperty('href')+"&type=44";       
    var newurl = "moobox('"+url+"');return false;";
    
    element.setProperty('onclick',newurl);
       
  });

});


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

