menus_status_array = new Array ();// remembers state of switches
//document.getElementById('press_room_contacts').style.display='none';
//document.getElementById('leftnav').style.display='none';
//menus_status_array['press_room_contacts']='hide';
//menus_status_array['leftnav']='hide';

img_close = '/pressroom/macys/template/images/expandbutton-close.gif';
img_open = '/pressroom/macys/template/images/expandbutton-open.gif';

function initialize_side_nav() {
	//define starting positions
	theid = 'leftnav';
	if (document.getElementById(theid).style.display=='none'){
		menus_status_array[theid]='hide';
		document.getElementById('img_' + theid).setAttribute ('src', img_open);
	} else {
		menus_status_array[theid]='show';
		document.getElementById('img_' + theid).setAttribute ('src', img_close);
	}
	
	theid = 'left_column_press_contacts';
	if (document.getElementById(theid).style.display=='none'){
		menus_status_array[theid]='hide';
		document.getElementById('img_' + theid).setAttribute ('src', img_open);
	} else {
		menus_status_array[theid]='show';
		document.getElementById('img_' + theid).setAttribute ('src', img_close);
	}
}


function toggle_div(theid) {
	if (document.getElementById) {
		if (menus_status_array[theid] != 'show') {
			document.getElementById(theid).style.display = 'block';
			document.getElementById('img_'+theid).setAttribute ('src', img_close);
			menus_status_array[theid] = 'show';
		}else{
			document.getElementById(theid).style.display = 'none';
			document.getElementById('img_'+theid).setAttribute ('src', img_open);
			menus_status_array[theid] = 'hide';
		}
	}
}
