$(document).ready(function(){$("a#contactbtn").bind("click",function(a){a.preventDefault();$("div.innercontainer").animate({left:"-250px"},"fast")});$("#contactForm").submit(function(a){a.preventDefault();$.ajax({type:"POST",url:"mail.php",data:$(this).serialize(),success:function(a){if(a!="TRUE"){$("#error").html(a)}else{$("#error").html("Uw bericht is verzonden<br />Wij nemen zo spoedig mogelijk contact met u op.");$("#contactForm").fadeOut()}}})});$("a#backbtn").bind("click",function(a){a.preventDefault();$("div.innercontainer").animate({left:"0px"},"fast")})})
