jQuery().ready(function(){

	/*var question_text_elem = jQuery('div#question_content');

	if( question_text_elem[0].scrollHeight >= question_text_elem[0].clientHeight ){
		//The text is short enough, don't display the "Show more" block.
		question_text_elem.next('.lire_suite').show();
	}
	
	question_text_elem.next('.lire_suite').children('a').click(function(){
		//scrollHeight, not clientHeight!
		question_text_elem.next('.lire_suite').css('overflow','hidden');
		question_text_elem.next('.lire_suite').animate({height:0,padding:0,margin:0,border:'none'},300,function(){
			jQuery(this).remove();
		});
		question_text_elem.animate({height:question_text_elem[0].scrollHeight},300);
		return false;
	});*/
	
});

