Event.observe(window, 'load', function() {

    list = [];

	$$("#news-recent_110 .news-recent-item img").each(function(e) {
	    list.push(e.src);
	});

    $$('#flash_104 object').first().SetVariable('images',list.join('|'));


    list = [];

	$$("#news-recent_110 .news-recent-item .news-recent-item_title h2").each(function(e) {
	    list.push(e.innerHTML);
	});

    $$('#flash_104 object').first().SetVariable('titles',list.join('|'));


    list = [];

	$$("#news-recent_110 .news-recent-item .news-recent-item_abstract h3").each(function(e) {
	    list.push(e.innerHTML);
	});

    $$('#flash_104 object').first().SetVariable('abstracts',list.join('|'));
	
	list = [];

	$$("#news-recent_110 .news-recent-item .news-recent-item_title a").each(function(e) {
	    list.push(e.href);
	});

    $$('#flash_104 object').first().SetVariable('links',list.join('|'));
});
