function ShowRandomImage()
{
	var now=new Date();
	var status=(now.getSeconds())%7;

	document.write('<img src="/public/images/inside_'+status+'.jpg" width="450" height="100" alt="New Ways"/>');
}

function ShowRandomHomeImage()
{
	var now=new Date();
	var status=(now.getSeconds())%7;

	document.write('<img width="250" height="250" src="/public/images/cover_'+status+'.jpg" alt="New Ways"/>');
}

