/*
 * Start the script des onglets
 */
jQuery(document).ready(function(){
  	$('#commentbox').hide(); 
  	$('#commentboxbo_3239').show();
	$('a.comment').click(function() { 
        var id = $(this).attr('id'); 
     $('#commentbox' + id).toggle(500); 
        // alert(id); 
     return false; 
     }); 

});
