
function toggle_cities(node)
{
	var targetUL = node.nextSibling;
	while(targetUL.nodeName != "UL") 
	{
	targetUL = targetUL.nextSibling;
	}

	var theParent = node.parentNode;

	if (targetUL.style.display == 'none') 

	{
	targetUL.style.display = 'block';
	theParent.style.backgroundImage="url(/static/images/localmkt-tri-down.png)";
	}

	else 
	{
	targetUL.style.display = 'none';
	theParent.style.backgroundImage="url(/static/images/localmkt-tri-right.png)";
	}
}





function expandLeftWell(division, state, msa)
{
	
	var division = 'hdn_division_' + division ;
	var state = 'hdn_state_'+ state ;
	var msa = 'hdn_city_'+ msa ;

//	alert(division);
//	alert(state);
//	alert(msa);

	$(":input").each(function(i){
		var currentInput = $(this).val();
		if(currentInput==division)
		{
			var targetUL = this.nextSibling;
			var theParent = this.parentNode;
			while(targetUL.nodeName != "UL") 
			{
				targetUL = targetUL.nextSibling;
			}
			if (targetUL.style.display == 'none') 

			{
			targetUL.style.display = 'block';
			theParent.style.backgroundImage="url(/static/images/localmkt-tri-down.png)";
			}

			else 
			{
			targetUL.style.display = 'none';
			theParent.style.backgroundImage="url(/static/images/localmkt-tri-right.png)";
			}
		}
		
	 }); 

	 $(":input").each(function(i){
		var currentInput = $(this).val();
		
		if(currentInput==state)
		{
			var targetUL = this.nextSibling;
			var theParent = this.parentNode;
			while(targetUL.nodeName != "UL") 
			{
				targetUL = targetUL.nextSibling;
			}
			if (targetUL.style.display == 'none') 

			{
			targetUL.style.display = 'block';
			theParent.style.backgroundImage="url(/static/images/localmkt-tri-down.png)";
			}

			else 
			{
			targetUL.style.display = 'none';
			theParent.style.backgroundImage="url(/static/images/localmkt-tri-right.png)";
			}
		}
		
	 });

	  $(":input").each(function(i){
		var currentInput = $(this).val();
		
		
		if(currentInput==msa)
		{
			
			var theParent = this.parentNode;

			var parentUL = theParent.parentNode;
			var stateHidden = parentUL.previousSibling.previousSibling;

			if(stateHidden.value == state)
			{
			
				if (!theParent.className) 
				{
					theParent.className = 'active';
				}

			}

			
		}
		
	 });
}

 function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
 }
 
 
 function toggle_MapDescription_visibility(mapId, idAnchorTag){
       var e = document.getElementById(mapId);
       var elemAnchorTag = document.getElementById(idAnchorTag);
       if(e.style.display == 'block')
       {
            e.style.display = 'none';
			elemAnchorTag.style.backgroundImage = "url(/static/images/localmkt-tri-right.png)";
       }
       else
       {
            e.style.display = 'block';
		    elemAnchorTag.style.backgroundImage = "url(/static/images/localmkt-tri-down.png)";
       }
 }
 
   function toggle_GetReport_visibility(reportId, idAnchorTag){
       var e = document.getElementById(reportId);
       var elemAnchorTag = document.getElementById(idAnchorTag);
       if(e.style.display == 'block')
       {
            e.style.display = 'none';
			elemAnchorTag.style.backgroundImage = "url(/static/images/sponsor-tri-right.png)";
       }
       else
       {
            e.style.display = 'block';
		    elemAnchorTag.style.backgroundImage = "url(/static/images/sponsor-tri-down.png)";
       }
 }