This code is taken from http://wilq32.googlepages.com/wilq32.rollimage222, and is supposed to animate an image rotation.
I can\'t figure out the structure exactly, and h
The bind parameter according to the docs is specific to the rotateimage object. Instead I think you just want to use the rotate function when your event fires off.
$(document).ready(function()
{
$('#divY').mouseover( $('#divX').rotate({angle:35}) );
$('#divY').mouseout( $('#divX').rotate({angle:-85}) );
});