document.domain = "imow.org";


/* --------------------------------------------------- */
/* DROP DOWN MENUS (MAIN NAV) */
/* --------------------------------------------------- */
function showMenu(divId) {
	var subMenu = document.getElementById(divId);
	if (subMenu != null)
		subMenu.style.visibility = 'visible';
	if (divId == "pop-themes") {
		if (document.getElementById('pop-stories') != null)
			document.getElementById('pop-stories').style.visibility = 'hidden';
		if (document.getElementById('pop-conv') != null)
			document.getElementById('pop-conv').style.visibility = 'hidden';
	} else if (divId == "pop-stories") {
		if (document.getElementById('pop-themes') != null)
			document.getElementById('pop-themes').style.visibility = 'hidden';
		if (document.getElementById('pop-conv') != null)
			document.getElementById('pop-conv').style.visibility = 'hidden';
	} else if (divId == "pop-conv") {
		if (document.getElementById('pop-themes') != null)
			document.getElementById('pop-themes').style.visibility = 'hidden';
		if (document.getElementById('pop-stories') != null)
			document.getElementById('pop-stories').style.visibility = 'hidden';
	}

	var tdFlash = document.getElementById('tdFlash');
	if (tdFlash != null)
		tdFlash.style.visibility = 'hidden';
}

function hideMenu(divId) {
	var subMenu = document.getElementById(divId);
	if (subMenu != null)
		subMenu.style.visibility = 'hidden';

	var tdFlash = document.getElementById('tdFlash');
	if (tdFlash != null)
		tdFlash.style.visibility = 'visible';
}

function SetActiveStory(storyVar)
{
	var hidStoryIDs = document.getElementById('hidStoryIDs').value;
	var storyIDs = hidStoryIDs.split(',');
	
	var hidStoryDetailIDs = document.getElementById('hidStoryDetailIDs').value;
	var detailIDs = hidStoryDetailIDs.split(',');

	var hidStoryArrowIDs = document.getElementById('hidStoryArrowIDs').value;
	var arrowIDs  = hidStoryArrowIDs.split(',');

	for (i = 0; i < storyIDs.length; i++)
	{	
		if (storyIDs[i].length > 0)
		{
			var story = document.getElementById(storyIDs[i]);
			var arrow = document.getElementById(arrowIDs[i]);
			var detail = document.getElementById(detailIDs[i]);
						
			if (story != null)
			{
				if (storyIDs[i] == storyVar)
				{
					if (arrow != null)
						arrow.innerHTML = '<img src="images/arrow_down.jpg" alt="" />';
					
					if (detail != null)
						detail.style.display = 'block';
					
					if (story != null)
						story.className = 'expand-heading-active-b';
				}
				else
				{
					if (arrow != null)
						arrow.innerHTML = '<img src="images/arrow_right.jpg" alt="" />';
						
					if (detail != null)
						detail.style.display = 'none';

					if (story != null)
						story.className = 'expand-heading';
				}
			}
		}
	}
}