var angle;
var duration;
$(document).ready(function(){
angle = getRandomInt(200, 400);
duration = getRandomInt(160, 250);
jQuery(".rotateimg").rotate({
bind:{
click:function(){
$(this).rotate({
animateTo:angle,
duration:duration
}) }
}});
});
$(function () {
var start = 0,
delta = 60,
duration = 600;
$('.rotateimg').rotate({
bind: {
click: function () {
$(this).rotate({
angle: start,
animateTo: start + delta,
duration: duration,
callback: function () {
start += delta;
}
});
}
}
});
});