document.observe('dom:loaded',function(){
	
	// office detail page show/hide content
	if($('pracImage'))
	{
		var display_item = 'overview';
		var item_list = ['overview','community','directions','news','events','attorneys'];

		if(window.location.toString().match(/view=map/))
			display_item = 'directions';
		display_items(display_item, item_list);

		var count = 0;
		$$('#contentNav a').each(function(el){
			$(el.parentNode).removeClassName('hLight');
			if(display_item == item_list[count])
				$(el.parentNode).addClassName('hLight');

			el.observe('click',function(){
				$$('#contentNav li').each(function(el2){ el2.removeClassName('hLight'); });
				$(el.parentNode).addClassName('hLight');
			});
			count++;
		});
	}
	
});