$(document).ready(function() {
 $('#footer').click(function(){
				$(this).animate({bottom: "0px",}, 'slow' );
				});
 $('#footer').mouseleave(function(){
				$(this).animate({bottom: "-127px",}, 'slow' );
				});
$('#addme').click(function(){
//alert('Feature not live until mid-week');
name = $('#newsletterName').val();
email = $('#newsletterEmail').val();
$('#footer').load('wp-content/themes/finnlys2011/ajax/signup.php?name='+name+'&email='+email);
});

});
