// Kwalbum 3.0
$(document).ready(function(){ 
	$('#comment_save').click(function(){
		$.post('http://forgothow.com/kwalbum/~ajax/AddComment',
			{comment:$('#comment_text').val(),item:item_id},
			function(data){
				$('#new_comment').html(data);
			}
		);
	});
});