$(document).ready(function()
{
	$('.entrycommentform').hide('fast');


	$('span.leaveacommentlink').click(function()
	{
		var wishlist_id = '#entrycommentform' + this.id;
		
		wishlist_id = wishlist_id.replace("leaveacommentlink", "");
				
		$(wishlist_id).show('normal');
		
	});
	
	$('img.cancelbuttons').click(function()
	{
		var wishlist_id = '#entrycommentform' + this.id;
		
		wishlist_id = wishlist_id.replace("cancel", "");
				
		$(wishlist_id).hide('normal');
		
	});

});
