$(document).ready(function(){
		$('#commentForm').submit( commentSave );
	});
	function commentSave(){
		$('#commentResult').html('<div class="loading"><img src="images/loading.gif" /></div>');
		$.ajax({
			type : 'POST',
			url : 'index.php?action=commentSave',
			data : $('#commentForm').serialize(),
			success : function(cevap){
				$('#commentResult').html(cevap);
			}
		})
		return false;
	}
	function menuG(id){
		disp = $('#childItem_'+id).css('display');
		
		if(disp == 'none'){
			$('#childItem_'+id).css('display', 'block');
		}else{
			$('#childItem_'+id).css('display', 'none');
		}
	}
