/**** Top Stories mouse over image change ******/
function mouseOver(imageOver,txt) {
document.getElementById("topstory").src=imageOver
document.getElementById(txt).style.left="25px";
document.getElementById(txt).style.width="250px";
}

function mouseOverOut(imageOver,txt) {
document.getElementById("topstory").src=imageOver
document.getElementById(txt).style.left="25px";
document.getElementById(txt).style.width="250px";
}

function mouseOut(imageOut,txt) {
document.getElementById("topstory").src=imageOut
document.getElementById(txt).style.left="-9999999px";
}

function hideallImage(){
  for (count=0; count<4; count++)
  document.getElementById('image'+count).style.display='none';
}

function showImage(box){
	document.getElementById("imagesContainer").style.left="23px";
	document.getElementById(box).style.display='block';
}
/**** end Top Stories mouse over image change ******/

function LoadTrigger() {
   hideallImage(); showImage('image0');
}
