/*
This function picks a random Liberty Medows logo
width='150' height='100'
*/
function RanKaKPic()
{
	var randnum = Math.random();		  //  order in a new array
	rnum = Math.round(3 * randnum) + 1; 
	document.write("<p> </p>");	
	if (rnum==1)
	{
		document.write(" <a href='http://www.kevinandkell.com' target='_top'><img src='../kkbanner02.gif' width='120' height='60' border='0'></a>  ");
	}
	if (rnum==2)
	{
		document.write(" <a href='http://www.kevinandkell.com' target='_top'><img src='../kkbanner03.gif' width='120' height='60' border='0'></a>  ");
	}
	if (rnum==3)
	{
		document.write(" <a href='http://www.kevinandkell.com' target='_top'><img src='../kkbanner04.gif' width='120' height='60' border='0'></a>  ");
	}
	if (rnum==4)
	{
		document.write(" <a href='http://www.kevinandkell.com' target='_top'><img src='../kkbanner05.gif' width='120' height='60' border='0'></a>  ");
	}
	document.write("&nbsp;");
}

