// JavaScript Document

var band_short = new Array("bnl", "cake", "counting", "cowboy", "cranberries", "ctd", "eagle_eye", "everclear", "flogging", "gbs", "jars", "jewel", "cohn", "phish", "rsf", "mullins", "hazel", "tmbg", "sprocket", "weirdal")

var band_long = new Array("Barenaked Ladies", "Cake", "Counting Crows", "Cowboy Mouth", "Cranberries", "Crash Test Dummies","Eagle Eye Cherry", "Everclear", "Flogging Molly", "Great Big Sea", "Jars of Clay", "Jewel", "Marc Cohn", "Phish", "Right Said Fred", "Shawn Mullins", "Sister Hazel", "They Might Be Giants", "Toad the Wet Sprocket", "Weird Al Yankovic")


function hazel() {
	var cell = document.getElementById("band_content");

		if ( cell.hasChildNodes() )
		{
    		while ( cell.childNodes.length >= 1 )
    			{
       				cell.removeChild( cell.firstChild );       
    			} 
		}

	document.getElementById('band_content').innerHTML = "<iframe name=\"the_iframe\" onLoad=\"calcHeight()\" scrolling=\"no\" width=\"100%\"  id=\"the_iframe\" src=\"artists/hazel/hazel_info.htm\" frameborder=\"0\" allowtransparency=\"true\"></iframe>";

}
