function showHideComment(cId){
	var divId = 'item_comment'+cId;
	if($('#'+divId).is(':visible')){
		$('#'+divId).hide('slow');
	} else $('#'+divId).show('slow');
}	

function saveComment(cId){

	$.post("modules/data/savecomment.php",  
		{ cid: cId, commenttxt: $('#item_comment_content'+cId).val() },
		function(data){
			if(data=='true') {
				$('#comment_saved'+cId).show(); 
				$('#comment_notsaved'+cId).hide(); 
			}
			else { 
				$('#comment_saved'+cId).hide();
				$('#comment_notsaved'+cId).show(); 
			}
		},
		"text"
	);

}
