menu_status = new Array();

caseStudies = new Array();
caseStudies[0] = 'SarahDarling';
caseStudies[1] = 'CompassRecords';
caseStudies[2] = 'Flecktones';
caseStudies[3] = 'TheViolinShop';
caseStudies[4] = 'MikeHaight';
caseStudies[5] = 'Novelift';
caseStudies[6] = 'Bearfoot';
caseStudies[7] = 'AllAccess';
caseStudies[8] = 'AtlantaFest';

links = new Array();
links[0] = 'link_sarah';
links[1] = 'link_compass';
links[2] = 'link_flecktones';
links[3] = 'link_violin';
links[4] = 'link_haight';
links[5] = 'link_novelift';
links[6] = 'link_bearfoot';
links[7] = 'link_allaccess';
links[8] = 'link_atlantafest';

function show(theid,thelink){
    if (document.getElementById) {
		var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }
		
		var switch_link = document.getElementById(thelink);

        if(menu_status[thelink] != 'highlight') {
           switch_link.className = 'highlight';
           menu_status[thelink] = 'highlight';
        }
		
		for (i=0;i<caseStudies.length;i++) {
			if (caseStudies[i] != theid) {
				hide(caseStudies[i],links[i]);
			}
		}
		
    }
}

function hide(theid,thelink){
    if (document.getElementById) {
		var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'hide') {
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
		
		var switch_link = document.getElementById(thelink);

        if(menu_status[thelink] != '') {
           switch_link.className = '';
           menu_status[thelink] = '';
        }
    }
}

function writeEmail() {
	l1 = 'mailt';
	l2 = 'o:';
	e1 = 'inf';
	e2 = 'o@';
	e3 = 'fanc';
	e4 = 'ue.c';
	e5 = 'om';
	document.write('<a href="'+l1+l2+e1+e2+e3+e4+e5+'">'+e1+e2+e3+e4+e5+'</a>');
}