$(document).ready(function() {


/*******************************/
/* controla o faq              */
/*******************************/
var teste = 
{
	initialize: function() {
var cont = $("#box-questions2").find("a").size();
for(ct=0;ct<cont;ct++){

$.grep( [ct] , function(n,i){
$("#btn-question"+n).click( function() {
	if ($("#resposta"+n).is(":hidden")) {
	$("#resposta"+n).animate({ 
        opacity: 'show',
        "height": "toggle"
      }, { duration: 'normal' } );
	} else {
	$("#resposta"+n).animate({ 
        opacity: 'hide',
        "height": "toggle"
      }, { duration: 'normal' } );		
	}
	});

});

}	} }
teste.initialize();


/*******************************/
/* select do faq               */
/*******************************/

$("#select-faq").change( function() {
	
	var selecao = $("#select-faq option:selected").val();
 $.ajax({
   type: "POST",
   url: "questions_faq.php",
   data: "c="+selecao,
   success: function(msg){
     $("#box-questions").html(msg);
     
     
     teste.initialize();
     
     
   }
 });



});

});