$(document).ready(function() {
       
       //bind the form and provide a callback function
       $('#emailbtn').click(function() { 
                $('#newsletter_form').ajaxSubmit({
                       target:'#ajax-newsletter'				
                       });
               return false;
       });
       
       //bind the form and provide a callback function
       $('#contactbtn').click(function() { 
    
    	   $('#contact_form').ajaxSubmit({
                       target:'#ajax-contact'				
                       });
               return false;
       });
       
});    