// JavaScript Document
swfobject.registerObject("slideshowmovie", "9.0.0", "../flash/expressInstall.swf");

$(function(){
	$('#email').jInputLabel({str: 'Your E-mail address'});
	
	$('#subscribeFormSubmitBtn').click(function(e) {
		e.preventDefault();
		
		var $dis = $(this);
		
		//hide the button and show an ajax icon instead
		$dis.hide();
		$('#ajaxIcon1').show();
		
		var email = $('#email').val();
		
		var errormsgs = '';
		if (email == '' || email == 'Your E-mail address') {
			errormsgs += '- Please provide an e-mail address.\n';
		}
		
		if (errormsgs != '') {
			$('#ajaxIcon1').hide();
			$dis.show();
			alert(errormsgs);
			return false;
		}
		else {
			$.get('../ajax/subscribe.php', {lang : 'en', email : email}, function(data) {
			
				$('#ajaxIcon1').hide();
				$dis.show();
				
				if (data != '0')
					alert(data);
				else {
					$('#newsletterBox').html('<p>Thank you. Your E-mail address was added to our mailing list.</p>');
				}
			});
		}
	});
});