


function reComment(name) {
	$('#comment').val($('#comment').val()+'@'+name+' ');
	$('#comment').focus();
	$('#comment').attr('scrollTop', 0);
}

$(document).ready(function() {


	$('#rate-photo').rating('/rating.php', {maxvalue:10, increment:1});


	$('#submit').click(function() {
		$('#submit').attr('disabled', true);
	});


});


