jQuery(document).ready(function(){
	jQuery("#contactusform").submit(function(){
		jQuery("#sendbutton").val("Working...");
		jQuery.post('/',jQuery(this).serialize(),function(data){
			var obj = jQuery.parseJSON(data);
			if (obj.bad == true){
				alert(obj.msg);	
				jQuery.each(obj.failed,function(k,v){
					jQuery("#input-" + v).css("border","1px solid #ff0000");
					jQuery("#input-" + v).focus(function(){
							jQuery("#input-" + v).css("border","1px solid #000000");
					});
				});
				jQuery("#sendbutton").val("Send");
			}else{
				jQuery("#contactusform").html(obj.msg);	
			}
		});
		return false;
	});
});
