
(function($){$.fn.contactable=function(options){var defaults={name:'Name',email:'Email',message:'Message',recipient:'test@test.co.uk',subject:'A contactable message',recievedMsg:'Thankyou for your message',notRecievedMsg:'Sorry but your message could not be sent, try again later',disclaimer:'Please feel free to get in touch, we value your feedback'};var options=$.extend(defaults,options);return this.each(function(options){$('div#contactable').toggle(function(){$('#overlay').css({display:'block'});$(this).animate({"marginLeft":"-=5px"},"fast");$('#contactForm').animate({"marginLeft":"-=0px"},"fast");$(this).animate({"marginLeft":"+=887px"},"slow");$('#contactForm').animate({"marginLeft":"+=890px"},"slow");},function(){$('#contactForm').animate({"marginLeft":"-=890px"},"slow");$(this).animate({"marginLeft":"-=887px"},"slow").animate({"marginLeft":"+=5px"},"fast");$('#overlay').css({display:'none'});});});};})(jQuery);
