/**
 * Attiva l'editor wisiwig FCKEditor
 */

$(document).ready(function(){
	$.fck.config = {	path: '/scripts/fckeditor/',
					height:150, 
					width:575,
					toolbar: 'Basic'
					};
	
	$('textarea#commento').fck();
});

