var loading = '<img src="http://www.accordsalud.com.ar/template/images/loads/loading.gif/"/>';

function getPreguntas() {
		 jQuery.ajax({
		 type: "POST",
		 async: "true",
		 dataType: "html",
		 data: {categoria:jQuery('#categoria').val()},
		 url: "/php/servicios/faqs/switch.php?accion=pregunta",
		 beforeSend:  function(objeto)	{jQuery("#respuestas").html(loading);},
		 success: 	  function(msg)		{jQuery("#respuestas").html(msg).slideDown("slow");}
		 });
}

function getBuscar() {
		 jQuery.ajax({
		 type: "POST",
		 async: "true",
		 dataType: "html",
		 data: {palabra:jQuery('#palabra').val()},
		 url: "/php/servicios/faqs/switch.php?accion=buscador",
		 beforeSend:  function(objeto)	{jQuery("#respuestas").html(loading);},
		 success: 	  function(msg)		{jQuery("#respuestas").html(msg).slideDown("slow");}
		 });
}

function Preguntar() {
		 jQuery.ajax({
		 type: "POST",
		 async: "true",
		 dataType: "html",
		 data: {email:jQuery('#email').val(),pregunta:jQuery('#pregunta').val()},
		 url: "/php/servicios/faqs/switch.php?accion=preguntar",
		 beforeSend:  function(objeto)	{jQuery("#preguntar").html(loading);},
		 success: 	  function(msg)		{jQuery("#preguntar").html(msg);}
		 });
}

function Pregunta(id) {
		 jQuery("p[id^='respuesta"+id+"']").toggle();
}

jQuery(document).ready(function(){
jQuery('#nueva-pregunta').click(function() {
    jQuery('#preguntar').toggle().slideDown("slow"); 
	return false;
  });
});  
