
/** Newsletter -------------------------------------------------------------- */

$(document).ready(function(){
	$('input#newsletter-button').click(function(){
		var params = {
			'email' : $('input#newsletter-input').val()
		}
		
		$.post($(this).attr('data-action'), params, function(data){
			$('#newsletter-response').html(data);
			$('#newsletter-response').show();
			$('input#newsletter-input').val('');
		});
		
		return false;
	});
	
  $('.viewport').mouseenter(function(e) {
      $(this).children('a').children('img').animate({ height: '180', left: '0', top: '0', width: '300'}, 100);
      $(this).children('a').children('span').fadeIn(200);
  }).mouseleave(function(e) {
      $(this).children('a').children('img').animate({ height: '180', left: '0', top: '0', width: '300'}, 100);
      $(this).children('a').children('span').fadeOut(200);
  });
  
});