function storyOpen(story, topic) {
    document.getElementById(story + '_body').innerHTML=document.getElementById(story + '_' + topic).innerHTML;
}

function onLoadHandler() {
	storyOpen('cbc','toronto'); 
	storyOpen('slashdot','main'); 
	storyOpen('digg','main')
	storyOpen('other','fark')
	storyOpen('lucky','numbers')
}

window.onload = onLoadHandler;

