jQuery(document).ready(function($){
	$('#addCommentImage').click(function(){
		var imageLoc = prompt('Adja meg a kép URL címét:');
		if ( imageLoc ) {
			$('#comment').val($('#comment').val() + '[img]' + imageLoc + '[/img]');
		}
		return false;
	});
});
