$(document).ready(function(){
	$('#addcommentlink').click(function(){
		$('#addcomment').css('visibility','visible');
		$('#addcomment').css('height','80px');
	});
	$('#addcommentbutton').click(function(){
		var text = $('#addcommentarea').val();
		var itemtype = $('#itemtype').val();
		var itemid = $('#itemid').val();
		if(!text || !itemtype || !itemid){
			return false;
		}
		$.post('/comment/save', {text:text, itemtype:itemtype, itemid:itemid}, 
			   function(data){
			       if(data){
				       $('#comments').html(data);
				       $('#addcommentarea').val('');
				   }
			   });
	});
	$('#cancelcommentbutton').click(function(){
		$('#addcommentarea').val('');
		$('#addcomment').css('height','0px');
		$('#addcomment').css('visibility','hidden');
	});	
});
