tinyMCE.init({ 
        theme : "advanced", 
        mode : "textareas", 
        elements : "content_area", 
        convert_urls : false, 
        relative_urls : false, 
        theme_advanced_toolbar_location : "top", 
        theme_advanced_toolbar_align : "left", 
        theme_advanced_buttons1 : "bold,italic,underline,strikethrough,separator,justifyleft,justifycenter,justifyright,justifyfull,separator,bullist,numlist,separator,outdent,indent,separator,undo,redo,separator,link,unlink,anchor,separator,image,separator,cleanup,code", 
        theme_advanced_buttons2 : "", 
        theme_advanced_buttons3 : "" 
    }); 
$(document).ready(function() {
				$("input[type='submit']").click(function() {
				tinyMCE.triggerSave();
				});
		  	    $("#contact_form").validate({		  	    	
				  rules: {				  	
					full_name : {
						required : true,
						minlength:6
						},		
					address : "required",
				  	phone : {
					required : true
					},
					content :"required",
					email :{
						required : true,
						email : true
						},
				  	captcha :"required"
					},				
				  messages :{
				  	full_name : {
						required : "Nhập tên người gởi",
						minlength : "Tên ít nhất 6 chữ"
						},		
					address : "Chưa nhập địa chỉ",
				  	phone :{
						required : "Nhập số điện thoại"
					},
					content :"Nhập nội dung",
					email : {
						required : "Chưa nhập email",
						email : "Không phải là email"},			  
				  	captcha :"Yêu cầu nhập mã bảo vệ"					
				  },
					  success: function(label) {
					// set &nbsp; as text for IE
					label.html("&nbsp;").addClass("checked");
					}						  
					})

			});
