$(document).ready(function() {

$('.openevent').click(function() { //Foto over en gestion inmueble

id=$(this).attr("id");

$.ajax({

type: "POST",

url: "events/homebig/",

data: "id="+id,

success: function(msg){

	$("#loadevento").html(msg); }

});



});



$("#encuestas_respuestasAddForm").validate({submitHandler: function(form) {

                jQuery(form).ajaxSubmit({

                    target: "#respuestas"

                });

			}});



$("#boletin").validate({submitHandler: function(form) {

                jQuery(form).ajaxSubmit({

                    target: "#resbole"

                });

			}});



});
