/*    tinyMCE.init({
        theme : "advanced",
        mode : "none",
        plugins : "blockquote",
        convert_urls : false
    });

    
    function toggleEditor(id) {
    	if (!tinyMCE.get(id))
    	tinyMCE.execCommand('mceAddControl', false, id);
    	else
    	tinyMCE.execCommand('mceRemoveControl', false, id);
    	}
*/


jQuery.noConflict();
 (function($) {  $(document).ready(function(){
	 $("a.trcomm").toggle(
		   		function(){ $(this).parents("div").next(".comments").animate({ height: 'show', opacity: 'show' }, 'slow');},
		   		function(){  $(this).parents("div").next(".comments").animate({ height: 'hide', opacity: 'hide' }, 'slow');}
		   		);
	 
	 myRebind = function(){
	 
	 $(".trpicker").toggle(			 		
						function(){ $(this).prev(".picker").animate({ height: 'show', opacity: 'show' }, 'slow');},
					   	function(){  $(this).prev(".picker").animate({ height: 'hide', opacity: 'hide' }, 'slow');}
					 );
			 
	 
	 $('.picker').each(function(){$(this).wheeel('#BlogCommentContenuto');});
	 }
	 
	 myRebind();
	 
}); })(jQuery)



