(function($){
$.fn.contactable = function(options) {var defaults = {};
return this.each(function(options) 
{
//show / hide function
$('div#contactable').toggle(function() {
$(this).animate({"marginLeft": "-=0px"}, "fast"); 
$('#contactForm').animate({"marginLeft": "-=0px"}, "fast");
$(this).animate({"marginLeft": "+=410px"}, "slow"); 
$('#contactForm').animate({"marginLeft": "+=410px"}, "slow"); 
}, 
function() {
$('#contactForm').animate({"marginLeft": "-=410px"}, "slow");
$(this).animate({"marginLeft": "-=410px"}, "slow").animate({"marginLeft": "+=0px"}, "fast"); 
$('#overlay').css({display: 'none'});
});
			
});
};
})(jQuery);


