$(document).ready(function(){

	//menu

	$("#menu li").hover(
		function(){
            $(this).find('ul').stop(true, true);
			$(this).find('ul#podmenu').slideDown();
		},
		function(){
			$(this).find('ul#podmenu').slideUp("fast");
		});
	
	$("#backform").validate({
		errorElement: "em",
		errorPlacement:function(error, element){
			error.appendTo(element.parent("label").next("label"));
		},
		rules: {
			email: "required",
			question: "required"
		},
		messages: {
			email: "",
			question: ""
		}
	});
	
	
	$("#backform").ajaxForm({
		dataType: 'json',
		success:  function (data){
			$("#form").html(data.response);
		}
	});
	
});
