document.write ('<p class="purpleheader">877-844-2772</p>');

function sidebar (type, headline, story, href ) {
	this.length = 5;
	this.type = type;
	this.headline = headline;
	this.story = story;
	this.href = href;
}

sidebarContent = new Array(1)
	sidebarContent[0] = new sidebar ("Nutritional Fact", "Calcium: An essential element for life", "Calcium is crucial to maintain life. Just about every cell in the body", "/nutrition/facts.html#Calcium");
	sidebarContent[1] = new sidebar ("Nutritional Fact", "Oxidative stress: fact or fiction", "Oxidative stress is defined as an imbalance between the endogenous antioxidant defence of the organism and the exogenous or endogenous pro-oxidant burden in favour of pro-oxidants.", "/nutrition/facts.html#Oxidative");

for (x = 0, y=2; x < y; x++) {
	
	with (document) {
		write ('<p class="purpleText"><span class="purpleHeader">' + sidebarContent[x].type + '</span>');
		write ('<strong>' + sidebarContent[x].headline + ':</strong> ' + sidebarContent[x].story + ' <a href="' + sidebarContent[x].href + '">Read More...</a></p>');
	}
}