/*

$(function() {  
  $('.req').hide();

  $("#sendform").click(function() {  

	alert('ok'); return false;
	
	$('.req').hide();  
	  var message = $("textarea#message").val();  
	    if (message == "") {  
	  $("#reqMessage").show();
	  $("textarea#message").focus();  
	  return false;  
	}
	
	    if (message == "Your Message") {  
	  $("#reqMessage").show();
	  $("textarea#comment").focus();  
	  return false;  
	}
	
	  var author = $("input#contactName").val();  
	    if (author == "") {  
	  $("#reqName").show();
	  $("input#contactName").focus();  
	  return false;  
	}
	
	    if (author == "Your Name") {  
	  $("#reqName").show();
	  $("input#author").focus();  
	  return false;  
	}
	
	  var email = $("input#contactEmail").val();  
	    if (email == "") {  
	  $("#reqEmail").show();
	  $("input#email").focus();  
	  return false;  
	}
	
	    if (email == "Your Email") {  
	  $("#reqEmail").show();
	  $("input#email").focus();  
	  return false;  
	}
	
//	$("form#commentform").submit();
	
/*		$('#commentform').html("<div class='thanks'></div>")  
	     .append("Thanks! Your Comment will be publish soon.")  
	     .hide()  
	     .fadeIn(1500, function() {  
	       $('.toda').append("<!-- -->");  
	     });

*/
/*
	// ajax submission 
	 var dataString = 'message='+ message + '&author=' + author + '&email=' + email;  
	// alert (dataString);return false;

	 $.ajax({  
	   type: "POST",  
	   url: "http://blog.thewwqgame.com/wp-content/themes/wwq/contactFormProcess.php",  
	   data: dataString,  
	   success: function() {  
	     $('#contactForm').html("<div class='thanks'></div>")  
			     .append("Thanks! We'll try to get back at you as woon as we can.")  
			     .hide()  
			     .fadeIn(1500, function() {  
			       $('.toda').append("<!-- -->");  
	   } 
	 });  
	 return false; 

  });  
});
