$(document).ready(function() {
	
	$('#image1').rotate(-25);
		
	$('#image2').rotate({angle:5});
	
	var rot=$('#image3').rotate({maxAngle:360,minAngle:-360,
		bind:
		[
		{"mouseover":function(){rot[0].rotateAnimation(360);}},
		{"mouseout":function(){rot[0].rotateAnimation(-360);}}
		]
	});
});

