/*-----------------------------------------------------------------------------
	Newsletter
-----------------------------------------------------------------------------*/
	
	$(document).ready(function() {
		$('#cta-subscribe input').focus(function() {
			if (!$(this).hasClass('ready')) {
				$(this).addClass('ready').val('');
			}
		});
	});
	
/*---------------------------------------------------------------------------*/