function showLocais(id) {
	$(id).slideToggle('fast');
}



$(document).ready(function(){
	
	$("#accLocais").accordion({ header: 'h1', autoHeight: false, collapsible: true, active: false }).show();
	
	
	// PNG fix no ie 6
	$(document).pngFix(); 

   $(".exposicao").hover(
	  function () {
		$(".info-extra a",this).show();
	  },
	  function () {
		$(".info-extra a",this).hide();
	  }
	);


});
