jQuery.noConflict();

	jQuery(document).ready(function($){
     //validar form
	 $("#commentForm").validate();			
	});
	
	
	
	 function verifica_codigo(){
		 //alert("hola");
      jQuery(document).ready(function($){
        
		$.ajax({
                        type: "GET",
			url: "php/odc.php",
                        data: "odc="+ $("#tmptxt").val(),
			cache: false,
			success: function(datos){
                            
				   $("#mesages").html(datos); //Insert chat log into the #chatbox div
                            
		  	      }
		     });
		
       });
		
	 }