//jQuery's noConflict mode
jQuery.noConflict();

jQuery(document).ready(function(){


	jQuery('a.lireLaSuite').click(
		function(e){
			e.preventDefault();
			jQuery(this).parent().next('div.blocCache').slideDown('slow');
		}
	);
	
	jQuery('a.replier').click(
		function(e){
			e.preventDefault();
			jQuery(this).parent().parent('div.blocCache').slideUp('slow');
		}
	);
	
	/*jQuery('.contenttable p.bodytext').each(
		function () {
			
			var htmlP	=	jQuery(this).html();
			
			if ( htmlP == 'Mail Apicrypt'){
				jQuery(this).addClass('hidden');
				jQuery(this).parents().parents().children('td').width('0%');
			}
			if ( htmlP.indexOf('<a href="javascript:linkTo_UnCryptMailto(') != '-1'){
				jQuery(this).addClass('hidden');
				jQuery(this).parents().parents().children('td').width('0%');
			}
		}
	);*/
});
	