window.addEvent('domready', function(){
	if($('map-holder')){
		var mapItem = new Swiff('static/flash/map.swf', {
			width: 490 ,
			height: 600 ,
			container:'map-holder',
			params: {
				wmode: 'transparent'
			}
		});
		
	}
});

function getOffices(region){
	$('offices-list').set('html', '<p><strong><center>Retrieving list of offices...</strong></center></p>');
	new Request.HTML({
		url:ROOT+'/'+CONTROLLER+'/ajax/getoffices',
		onSuccess:function(list, items, HTML){
			$('offices-list').set('html', HTML);
		}
	}).post({'region':region});
}
