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

    list = [];

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

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

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

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