$(function(){
	$("#refreshimg").click(function(){
		$.post('newsession.php');
		$("#captchaimage").load('image_req.php');
		return false;
	});
	
	$("#captchaform").validate({
		rules: {
			captcha: {
				required: true,
				remote: "js/comment_js/process.php"
			}
		},
		messages: {
			captcha: "Correct captcha is required. Click the captcha to generate a new one"	
		},
		submitHandler: function() {
			var fname = document.getElementById('fname').value;
			var lname = document.getElementById('lname').value;
			var email = document.getElementById('email').value;
			var telephone = document.getElementById('telephone').value;
			var subject = document.getElementById('subject').value;
			var message = document.getElementById('message').value;
			window.location='contactsendmail.php?fname=' + fname 
			+'&lname=' + lname 
			+'&email=' + email 
			+'&telephone=' + telephone 
			+'&subject=' + subject 
			+'&message=' + message 
			+'&action=sendmail';
		},
		onkeyup: true
	});
	
});
