$(document).ready(function() { 
	$('.submit-cms').click( function() {
		var mail = $("#email-address1").val();
		var ip	 = $("#ip-address1").val();
		var phone	 = $("#phone1").val();
		var cms = 'CMS ( Content Management Systems )';
		$.post( '/', { action: 'demo', email: mail, ip: ip, phone: phone, cms: cms  }, function(r) {
			if (r == 'OK') 
				document.location = '/thank-you';
			if (r == 'ERROR') 
				alert('Please enter a valid e-mail address.');
		});
		return false;
	});

	$('.submit-com').click( function() {
		var mail = $("#email-address2").val();
		var ip	 = $("#ip-address2").val();
		var phone	 = $("#phone2").val();
		var cms = 'eCommerce ( Start Trading Online )';
		$.post( '/', { action: 'demo', email: mail, ip: ip, phone: phone, cms: cms  }, function(r) {
			if (r == 'OK') 
				document.location = '/thank-you';
			if (r == 'ERROR') 
				alert('Please enter a valid e-mail address.');
		});
		return false;
	});
	
	$('.submit-in').click( function() {
		var mail = $("#email-address3").val();
		var ip	 = $("#ip-address3").val();
		var phone	 = $("#phone3").val();
		var cms = 'Intranet/Extranet ( Corporate Solutions )';
		$.post( '/', { action: 'demo', email: mail, ip: ip, phone: phone, cms: cms  }, function(r) {
			if (r == 'OK') 
				document.location = '/thank-you';
			if (r == 'ERROR') 
				alert('Please enter a valid e-mail address.');
		});
		return false;
	});
});

