function init(){
  initNewsPage();
}
function init2()
{
  alert("entire page loaded");
}


window.addEvent('domready', init);
function initNewsPage()
{

            //hide the full stories
            
            var fullStory1 = $('story1');
            var fullStory2 = $('story2');
            var fullStory4 = $('story4');
            var fullStory6 = $('story6');
            var fullStory7 = $('story7');
            var fullStory8 = $('story8');
            var fullStory9 = $('story9');

            var truncStory1 = $('story1trunc');
            var truncStory2 = $('story2trunc');
            var truncStory4 = $('story4trunc');
            var truncStory6 = $('story6trunc');
            var truncStory7 = $('story7trunc');
            var truncStory8 = $('story8trunc');
            var truncStory9 = $('story9trunc');
           
            fullStory1.style.display = "none";
            fullStory2.style.display = "none";
            fullStory4.style.display = "none";
            fullStory6.style.display = "none";
            fullStory7.style.display = "none";
            fullStory8.style.display = "none";
            fullStory9.style.display = "none";

			truncStory1.style.display = "none";
            truncStory2.style.display = "none";
            truncStory4.style.display = "none";
            truncStory6.style.display = "none";
            truncStory7.style.display = "none";
            truncStory8.style.display = "none";
            truncStory9.style.display = "none";
           
            //add the truncated to the container elements
            $('story1target').innerHTML = $('story1trunc').innerHTML;
            $('story2target').innerHTML = $('story2trunc').innerHTML;
            $('story4target').innerHTML = $('story4trunc').innerHTML;
            $('story6target').innerHTML = $('story6trunc').innerHTML;
            $('story7target').innerHTML = $('story7trunc').innerHTML;
            $('story8target').innerHTML = $('story8trunc').innerHTML;
            $('story9target').innerHTML = $('story9trunc').innerHTML;
            
} //end initNewsPage()

function readMore1()
{
	//
	$('story1target').innerHTML = $('story1').innerHTML;
}

function readMore2()
{
	$('story2target').innerHTML = $('story2').innerHTML;
}

function readMore4()
{
	$('story4target').innerHTML = $('story4').innerHTML;
}

function readMore6()
{
	$('story6target').innerHTML = $('story6').innerHTML;
}

function readMore7()
{
	$('story7target').innerHTML = $('story7').innerHTML;
}

function readMore8()
{
	$('story8target').innerHTML = $('story8').innerHTML;
}

function readMore9()
{
	$('story9target').innerHTML = $('story9').innerHTML;
}

function closeStory1()
{
	$('story1target').innerHTML = $('story1trunc').innerHTML;
}

function closeStory2()
{
	$('story2target').innerHTML = $('story2trunc').innerHTML;
}

function closeStory4()
{
	$('story4target').innerHTML = $('story4trunc').innerHTML;
}

function closeStory6()
{
	$('story6target').innerHTML = $('story6trunc').innerHTML;
}

function closeStory7()
{
	$('story7target').innerHTML = $('story7trunc').innerHTML;
}

function closeStory8()
{
	$('story8target').innerHTML = $('story8trunc').innerHTML;
}

function closeStory9()
{
	$('story9target').innerHTML = $('story9trunc').innerHTML;
}
