// CONFIGURACAUM DOs MENUs


window.addEvent('domready', function(){
			var accordion = new Accordion('h3.atStart', 'div.atStart', {
				opacity: false,				
				onActive: function(toggler, element){
					toggler.setStyle('background-position', 'center bottom');
				},
				
				onBackground: function(toggler, element){
					toggler.setStyle('background-position', 'center top');
				}
			}, $('acord'));
			
			
			
		}); 
		
window.addEvent('domready', function(){
			var accordion = new Accordion('h3.atStart2', 'div.atStart2', {
				opacity: false,				
				onActive: function(toggler, element){
					toggler.setStyle('background-position', 'center bottom');
				},
				
				onBackground: function(toggler, element){
					toggler.setStyle('background-position', 'center top');
				}
			}, $('acordeon'));
			
			
			
		}); 
		




		
		
// funcaum adaptada para o menu...
function Display(id){
	if(document.getElementById(id).style.display=='block'){
	document.getElementById(id).style.display='inherit';
	}
	else {
	document.getElementById(id).style.display='block';
	}
}