tab_hide = new Array();
tabs_list = new Array('tabPress','tabEvents');

tab_hide['Press'] = 'Events';
tab_hide['Events'] = 'Press';

function case_map()
{
	if($chk($('caseMap')))
	{
		var map = $('caseMap');
		map.getElement('a').onclick = function()
		{
			open_window(this.href, 555, 410);
			return false;
		}
	}
}

function select_menus()
{
	$('ServiceID').addEvent('change',function(){
		$('srvForm').submit();
	});

	$('IndustryID').addEvent('change',function(){
		window.location = '/industries.php?IndustryID='+this.value;
	});
}


addLoadEvent(case_map);
addLoadEvent(tabs);
addLoadEvent(widgets);
addLoadEvent(select_menus);


