﻿<!-- jQuery Code -->

$(document).ready(function() {

$('#commentbox').hide();

 

$('a.comment').click(function() {

var id = $(this).attr('id');

$('#commentbox' + id).toggle(500);

// alert(id);

return false;

});

 
}); 
