jQuery(document).ready(function($){
//  loadTweet();
  
  $('#newsletter-box-content').css('display','none');
  
  $('#newsletter-box .click-area').click(function() {
		$('#newsletter-box-content').animate({height:'toggle'}, 'fast');
		return false;
	});
	
	$('#signup-form input').click(function() {
	  if ($(this).attr('value') == ('Your name' || 'Your email')) {
	    $(this).attr('value','');
	  }
	  return false;
	});
	
	$('#signup-form').submit(function() {
    $(this).ajaxSubmit({
      target: '#signup-form'
    });    
    return false;
	});

});

