function hide(y)
{
	for (i=1; i<y+1; ++i)
	{
		el = "panel"+i;
  		document.getElementById(el).style.display = 'none';
	}
}

function show(x,y)
{
		hide(y);
		el = "panel"+x;
  		document.getElementById(el).style.display = 'block';
	
}

rightColArray = new Array();

rightColArray[0] = "<h2>Dr. Rachel Makes House Calls</h2><p>Wouldn't it be great to have that doctor there when your kid has a meltdown or to witness the behavior at the dinner table or when doing their homework?<br /><a href='in_your_home.php' class='more'>more ></a></p>";
rightColArray[1] = "<h2>Whatever you are willing to put up with is exactly what you will have.</h2>";
rightColArray[2] = "<h2>The best way to escape the problem is to solve it.</h2>";
rightColArray[3] = "<h2>If you don't start it's certain you won't arrive.</h2>";
rightColArray[4] = "<h2>Life is what's coming ... not what was.</h2>";
rightColArray[5] = "<h2>When thing's go wrong ... don't go with them.</h2>";
rightColArray[6] = "<h2>No one can ruin you day without Your permission.</h2>";
rightColArray[7] = "<h2>Look for opportunities ...not guarantees.</h2>";

function selectContent()
{
	var total = 8;
	var ranNum= (Math.floor(Math.random()*total-1))+1;
	document.getElementById('random').innerHTML = rightColArray[ranNum];
}