jQuery(document).ready(function(){

$(".csdrotate").rotate({ 
   bind: 
     { 
        mouseover : function() { 
            $(this).rotate({ animateTo:180,easing: $.easing.easeInOutExpo })
        },

        mouseout : function() { 
            $(this).rotate({animateTo:0,easing: $.easing.easeInOutExpo})
        }		
     } 
   
});
});
