how to control the one whole class by onclick event of another class ?

how to control the one whole class by onclick event of another class ?

Hi all,

I am using the spritespin plugin. Please see this link - http://spritespin.ginie.eu/examples.html

Wherever the action like mouseup, mouse down action in  spritespin class takes place it will rotate 360 degree

I don't want this action.

I am in need of action to be control by another class.

<div class=" spritespin"></div>
                            <div class="left-mov"><a href="#"></a></div>
                            <div class="right-mov"><a href="#"></a></div>

Here i want to control the spritespin whole action by mouseover action of left-mov or right-mov class.

How can i proceed this ?

any idea, please guide me....

/* original code starts */
$(". spritespin").spritespin({
                        width: 609,
                        height: 503,
                        frames: frames.length,
                        behavior: "hold", // "hold"
                        module: "360",
                        sense: 1,
                        source: frames,
                        animate: false,
                        loop: false,
                        loopFrame: 0,
                        frameWrap: false,
                        frameStep: 1,
                        frameTime: 72,
                        enableCanvas: true,
                        reverse: false,
                        orientation: 'horizontal'

                    }).bind("onFrame mouseup mousedown onLoad", function(e) {

-----------
---------
--------

});

/* original code ends */

/* my code have to start like this */
$(".left-mov a, . spritespin").mouseover(function(e){

// here i dont know how to bind the sprintespin class action, guide me please urgent....

});
/* my code ends */