I have this plugin working great on everything but IE 6. I have a png fix that converts the images to spans. The rotate doesn't seem to work. The span has the same class that the rotate is applied too but I can't get it to rotate. Any help would be greatly appreciated. Thanks.
var rotate_arrow = $('#partnership .expand_div_arrow');
rotateRight(rotate_arrow);
function rotateRight(element) {
element.rotate({
angle:0,
duration:500,
animateTo:-180
});
element.stop();
}