execOnLoadFP = function()
{
	timedCount();
	timedCount2();
}

//window.onload=execOnLoad;

var imgTextStr = "";
var t
function timedCount()
{
	var ranNumInt = (Math.floor(Math.random()*6));
	switch (ranNumInt)
	{
		case 0:
			imgTextStr = '<img src="images/fpContortionist.png">';
			break;
		case 1:
			imgTextStr = '<img src="images/fpDart.png">';
			break;
		case 2:
			imgTextStr = '<img src="images/fpMaze.png">';
			break;
		case 3:
			imgTextStr = '<img src="images/fpRope.png">';
			break;
		case 4:
			imgTextStr = '<img src="images/fpScale.png">';
			break;
		case 5:
			imgTextStr = '<img src="images/fpShoes.png">';
			break;
	}
	document.getElementById('jsRightCont').innerHTML = imgTextStr;
	t=setTimeout("timedCount()",10000);
}

var customerTestimonialStr = "";
var t2
function timedCount2()
{
	var ranNumInt = (Math.floor(Math.random()*6));
	switch (ranNumInt)
	{
		case 0:
			customerTestimonialStr = '<em>“Your idea made me enough to subscribe for the next 217 years so you can consider me a long-term Subscriber.”</em><br /><div style="margin-left: 400px;">-- John F., New York, NY</div>';
			break;
		case 1:
			customerTestimonialStr = '<em>“Every <b>BSR Alert</b> and issue of <b>Biotech Monthly</b> is an eagerly awaited event!” </em><br /><div style="margin-left: 400px;">-- -- Zeke S., New York, NY</div>';
			break;
		case 2:
			customerTestimonialStr = '<em>“I\'ve always thought your service and coverage was very good.  Hope to take a look at BSR+Alpha soon.”</em><br /><div style="margin-left: 400px;">-- Bert R., Encino, CA</div>';
			break;
		case 3:
			customerTestimonialStr = '<em>“Your informative, hard hitting, & to-the-point articles have been an asset to my portfolio AND my peace of mind.”</em><br /><div style="margin-left: 400px;">--Jeff H., Issaquah, WA</div>';
			break;
		case 4:
			customerTestimonialStr = '<em>“Sign me up for another year. It\'s the best buy for the money in the biotech investing field.” </em><br /><div style="margin-left: 400px;">-- John H., Charlotte, NC</div>';
			break;
		case 5:
			customerTestimonialStr = '<em>“Thank you again for your intelligent and refreshingly unbiased analysis.” </em><br /><div style="margin-left: 400px;">-- Bruce W., Bellevue, WA</div>';
			break;
	}
	document.getElementById('jsQoute').innerHTML = customerTestimonialStr;
	t2=setTimeout("timedCount2()",10000);
}