
function initSidebar(id, title)
{
	
	var html = '<h1>' + title + '</h1>';

	html += '<a href="/cms/../news/story1.html"><img src="/cms/../cms_images/pnc002_newspix_f01.png" alt="Launch of Pet Nutrition Concepts" /></a>';
	html += '<a href="/cms/../news/story1.html">Launch of Pet Nutrition Concepts</a>';
	
	var e = document.getElementById(id);
	e.innerHTML = html;
}
