// JavaScript Document

//$(document).ready(function() {
// 
//	//ACCORDION BUTTON ACTION	
//	$('div.accordionButton2').click(function() {
//		$('div.accordionContent2').slideUp('normal');	
//		$(this).next().slideDown('normal');
//	});
// 
//	//HIDE THE DIVS ON PAGE LOAD	
//	$("div.accordionContent2").show();
//	$("div.accordionContent3").hide(); 
//});

//SOM
function EvalSound(soundobj) {
  var thissound= eval("document."+soundobj);
  thissound.Play();
}

//animacao
$(document).ready(function() {
	
	$('div.accordionButton').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});

$(document).ready(function() {
	
	$('div.accordionButton2').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().show();
	$("div.accordionContent2").hide();
	$("div.accordionContent3").show(); 
});



