$(document).ready(function() {
	
	$("#content table tr:even").addClass("even");
	$("#content table tr:odd").addClass("odd");
	
	var feature_not_available = 'This feature is currently not available in the beta.';
	
	/* $("#newsletterForm").submit(function() {
		alert(feature_not_available);
		return false;
	}); */
	
	$(".enquire-button").click(function() {
		alert(feature_not_available);
		return false;
	});
	
	$("#reset-form").click(function() {
		$("#ContactForm .text").val("");
		$("#cfName").focus();
		return false;
	});
	
});