


function getSidebarSection() {


	var url = window.location.href;


	if (url.indexOf('dd')!=-1) 		{return 'dd';}


	return 'main';


}





function DoSidebar() {


	var currentSection = getSidebarSection();


	


	document.write("<div id='content' style='margin-top:10px;cursor:hand;'>");


	document.write("<div class='grid3cola' style='cursor:hand;'>");


	document.write("<div class='column last sidebar' style='cursor:hand;'>");


	document.write("<h2 id='titleessentials' style='margin:0 0 0 2px; padding:0;cursor:hand;'><img src='images/header.gif'></h2>");


	document.write("<div id='essentials' class='sidebox' style='cursor:hand;'>");


	document.write("<ul class='drawers shingles'>");


	


	switch(currentSection) {


			


		case "dd" :


			writeSupport();


			break;


			


		default :


			writeMain();			


	}


	


	document.write("</ul>");


	document.write("</div>");


	document.write("</div>");


	document.write("</div>");


	document.write("</div>");





}





function writeMain() {


	// OK 1. Testimonial


	document.write("<li style='z-index: 5;' class='first'>");


	document.write("<a class='thumbnail' href='advantages.html'><div class='sidebarhero' id='side-testimonial'></div></a>");


	document.write("<a class='handle' href='advantages.html'>");


	document.write("<strong>Testimonials</strong>");


	document.write("<span class='description'>View actual customer reviews about our software products.</span>");


	document.write("<span class='more'>Read More</span></a></li>");


	


	// OK 2.  Best Products


	document.write("<li style='top: 78px; z-index: 2;' class='obscured'>");


	document.write("<a class='thumbnail' href='whichsoftware.html'><div class='sidebarhero' id='side-bestchoice'></div></a>");


	document.write("<a class='handle' href='whichsoftware.html'>");


	document.write("<strong>Which is Best For Me?</strong>");


	document.write("<span class='description'>Learn which product to select for your specific situation.</span>");


	document.write("<span class='more'>Find Now</span></a></li>");


	


	// OK 3.  Online Support


	document.write("<li style='top: 156px;' class='obscured'>");


	document.write("<a class='thumbnail' href='support.html'><div class='sidebarhero' id='side-support'></div></a>");


	document.write("<a class='handle' href='support.html'>");


	document.write("<strong>Online Support</strong>");


	document.write("<span class='description'>Access our knowledge base and live support resources.</span>");


	document.write("<span class='more'>Chat Now</span></a></li>");


}