// We need wmode=opaque so the z-index works properly in some browsers
// http://pipwerks.com/lab/swfobject/z-index/2.0/index.html

swfobject.embedSWF("/flash/contact_map.swf?xmlPath=/xml/arcadia_location_contacts.xml", "contact_map", "955", "460", "9.0.0", "expressInstall.swf", {}, {'wmode':'opaque'},{});

$(document).ready(function() {
	
	$('.region h1').click(function() {
		var $h1 = this;
		$(this).next('.region_info').slideToggle('slow', function() {
			$($h1).children('.arrow').toggleClass('closed');			
		});
		
	});
	
});
