Event.observe(window, 'load', function() {							
	Event.observe($('comment-form'), 'submit', function(event){			
		//Event.stop(event);		
	});	
	Event.observe($('envoyer'), 'click', function(){			
		$('waiting').className = 'displayBlock';
		
		
		var mess= $F('c_content');
		var nom = $F('c_name');
		//console.log(mess + ' ' +nom);
		/*
		var url = urlShipAjax;	
		new Ajax.Request(url, {
			method: 'post',
		  	parameters: { 		  		
		  		item	: id,
		  		check	: checked	  			  		
		  	},
			onSuccess: function(transport) {			
		    	window.location.reload();
		  	},
		  	onFailure : function(transport){
		 	
		  	}
		});	
		*/
		
	});	
	
});