jQuery(document).ready(function() {
		jQuery('.doSubscribe').click(function() {
			jQuery.ajax({
				dataType: 'text',
				success: function (message, textStatus) {
					if (message == undefined)
					{
						jQuery('.subscribeInput').hide();
						jQuery('.subscribeThanksText').show();
					}
					else
						alert(message);
				},
				type: 'POST',
				url: 'subscribe.php',
				cache: false,
				data: jQuery(this).parents('form').serialize()
			});
			return false;
		});
		
		$('.subscribeEmail').placehold({
				placeholdValue: 'Ââåäèòå email', 
				blurClass: 'placehold'
		});
	}
);
