jQuery(document).ready(function(){
    
    jQuery('#test1').css({ rotate : -20});
    
    jQuery('#test3').bind('click',function(){
        $('#test3').animate({ rotate : '-30'}, 400)
    })
});
