$(document).ready(function()
{
	itemCount = 0;
	
	// Find all div items in the item with ID DrHuntleyTipofTheDay and perform action for each
	$("#DrHuntleyTipofTheDay").children('div').each(function()
	{
		itemCount++;
		
		// Apply an ID to each item and hide it
		$(this).attr('id',itemCount);
		$(this).css('display','none');
	});
	
	// Determine a random number and show the equivalent div
	randomNumber = Math.floor(Math.random()*itemCount+1);
	$("#" + randomNumber).css('display','block');
});
