// startup

window.addEvent('domready', function(){
	var list = $$('.news-list-gift-img a');
  
	list.each(  function(element) {
		var url = element.getProperty('href')+"&type=44";       
		element.addEvent("click", function(e){
			new Event(e).stop();
			moobox(url);
		});
	});

});


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
  );
}

