// Article dropdown event handler
function onArticleDropdownChange(ddl, section, subsection)
{
	var articleID = ddl.options[ddl.selectedIndex].value;
	if(articleID === "") return;
	
	var dir = "";
	
	switch(section)
	{
		case "healthier_lives":
		case "cleaner_home":
		case "our_story":
			dir = section;
			break;
		case "cold_flu":
			dir = "healthier_lives/"+section
			break;
	}
	
	location.href = "http://www.cloroxenespanol.com/enes/"+dir+"/article.php?&subsection="+subsection+"&article_id="+articleID;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
