function OnHover()
{
	document.getElementById('headliner1').className = 'story2';
};

function OnOut()
{
	document.getElementById('headliner1').className = 'story';
};


function image( filename, width, height ) 
{
	left_ = (screen.width  - width)/2;
	top_  = (screen.height - height)/2;

	window.open( filename, '', 'status=yes,menubar=no,toolbar=no,resizable=no,scrollbars=no,width='+
		width+',height='+height+', left='+left_+',top='+top_);
};
