// JavaScript Document
var names = new Array("terrance", "sonny", "richard", "mario", "becka", "ghislaine", "marika", "kc");
var ups = new Array();
var downs = new Array();

for (var i = 0; i < names.length; i++)
{
	var this_up = new Image();
	this_up.src = "/images/nav/artists/" + names[i] + ".gif"
	ups.push(this_up);
	
	var this_down = new Image();
	this_down.src = "/images/nav/artists/" + names[i] + "_down.gif"
	downs.push(this_down);
};

function highlight_artist(index) {
	for (var j = 0; j < names.length; j++)
	{
		if (j == index)
		{
			document.getElementById(names[j]).src = downs[j].src;
		}
		else
		{
			document.getElementById(names[j]).src = ups[j].src;
		};
	};
};

function hide_dropdown()
{
	document.getElementById('artist_dropdown').style.display = "none";
};

function show_dropdown()
{
	document.getElementById('artist_dropdown').style.display = "block";
	hide_theshow_dropdown();
};


// the show dropdown

var ellaup = new Image();
var elladown = new Image();
var theshowup = new Image();
var theshowdown = new Image();

ellaup.src = "/images/nav/theshow/ellacooper.gif";
elladown.src = "/images/nav/theshow/ellacooper_down.gif";
theshowup.src = "/images/nav/theshow/theshow.gif";
theshowdown.src = "/images/nav/theshow/theshow_down.gif";

function hide_theshow_dropdown()
{
	document.getElementById("theshow_dropdown").style.display = "none";
}

function show_theshow_dropdown()
{
	document.getElementById("theshow_dropdown").style.display = "block";
	hide_dropdown();
}

function highlight_theshow(index)
{
	if (index == 0)
	{
		document.getElementById("theshow").src = theshowdown.src;
		document.getElementById("ellacooper").src = ellaup.src;
	}
	else
	{
		document.getElementById("theshow").src = theshowup.src;
		document.getElementById("ellacooper").src = elladown.src;
	}
}







