function show_new(toShow)
{
	var txtOf = "";
	var divObj = document.getElementById("desc_holder");
	
	switch(toShow)
	{
		case "wel":
			//txtOf = "<h2>Welcome to HealthSleeve.com</h2><p><strong>FLORIDA HOSPITAL</strong> introduces a new approach to optimizing your wellness by impacting your daily lifestyle. The HealthSTYLE Sleeve is the only health monitoring device that reinforces a heal thier way of living, embracing a balance of nutrition, activity and rejuvenation.</p><p class='right'><a href='javascript:show_new(\"inf\");'>Read more</a> &raquo;</p>"
			txtOf = "";
		break;
		case "inf":
			//txtOf = "<h2>Information</h2><p><strong>Inform</strong> your self with a detailed Health Snapshot resulting from a pre-assessment including your baseline physiological data, lifestyle and physical tests,nutritional assessments, and lab results .</p><p class='right'><a href='javascript:show_new(\"rej\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "rej":
			//txtOf = "<h2>Rejuvenation</h2><p><strong>Rejuvenate</strong> as multiple sensors in The HealthSTYLE Sleeve record your daily physiological data and create comprehensive reports ready for instant viewing on the web program.</p><p class='right'><a href='javascript:show_new(\"inv\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "inv":
			//txtOf = "<h2>Invigoration</h2><p>Invigorate yourself by tracking your activity and exercise and how you’re impacting your wellness goals . You’ll be fascinated with realtime views of how your rollerblading or tennis game translates into minutes of exercise, dail y calories burned, resting calories burned, and pedometer readings .</p><p class='right'><a href='javascript:show_new(\"mot\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "mot":
			//txtOf = "<h2>Motivation</h2><p><strong>Motivate</strong> yourself with the help of training buddies, health coaches and wellness counselors . You have coaching support every step of your journey to wellness.<br></p><p class='right'><a href='javascript:show_new(\"ref\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "ref":
			//txtOf = "<h2>Refreshing</h2><p>Refresh yourself by recording the duration and quality of your sleep to maintain energy and overall health. Learn how long it takes for you to actually fall asleep and whether or not you’re getting a full night’s rest.<br></p><p class='right'><a href='javascript:show_new(\"nou\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "nou":
			//txtOf = "<h2>Nourishing</h2><p>Nourish your body by moderating the foods you like and balancing them with what your body actually needs for healthful living. Enter your meals and instantly see your daily calorie count as well as fiber, saturated fat , sodium and folic acid intake. Also consult a recommended meal plan to ensure a balanced diet with essential nutrients.<br></p><p class='right'><a href='javascript:show_new(\"liv\")'>Read more</a> &raquo;</p>";
			txtOf = "";
		break;
		case "liv":
			//txtOf = "<h2>Live Welnia</h2><p><strong>Live Life to the Fullest</strong> by building a better, healthier you. The HealthSTYLE Sleeve will become available in February 2007.</p><p class='right'><br><a target='_blank' href='http://www.welnia.com'>Visit Welnia Now to learn more</a> &raquo;</p>";
			txtOf = "";
		break;
		default:
			
	}
	divObj.innerHTML = "<div id="+toShow+"><div align=\"left\">"+txtOf+"</div></div>";
	
	//alert(txtOf);
	//clear_other();
}

//determine if there is another active tab
function clear_other()
{
	
	var wel = document.getElementById("wel");
		//if(wel.class != "navitab")
			alert(wel.innerHTML);
		//document.getElementById("wel").class = "navitab";
		/*
	if(document.getElementById("inf").class != "navitab")
		document.getElementById("inf").class = "navitab";
	if(document.getElementById("rej").class != "navitab")
		document.getElementById("inv").class = "navitab";
	if(document.getElementById("inv").class != "navitab")
		document.getElementById("inv").class = "navitab";
	if(document.getElementById("mot").class != "navitab")
		document.getElementById("mot").class = "navitab";
	if(document.getElementById("ref").class != "navitab")
		document.getElementById("ref").class = "navitab";
	if(document.getElementById("nou").class != "navitab")
		document.getElementById("nou").class = "navitab";
	if(document.getElementById("liv").class != "navitab")
		document.getElementById("liv").class = "navitab";
		*/
}