$(document).ready( function () {
	if (document.getElementById('openItemComments')) {
		$('#openItemComments').click(function () {
			$('#shopItemComments .commentsHolder').slideToggle(200);
		});
	}
	
	if (document.getElementById('addNewCommentLink')) {
		$('#addNewCommentLink').click( function () {
			showMagicPopup('addItemCommentPopup', document.getElementById('addNewCommentLink'));
		});
	}
	
	if (document.getElementById('loadAllItemComments')) {
		$('#loadAllItemComments').click(function () {
			
//			$('#shopItemComments .commentsHolder .single').remove();
		});
	}
});

function loadItemComments(iId) {
	if (!(iId = parseInt(iId)))
		return false;
	
	$.get(
		'/shop/items/' + iId + '/get-all-comments/',
		{},
		function (d) {
//			alert(d);
			$('#shopItemComments .commentsHolder').html(d);
		}
	);
}
