Set SVG as mouse pointer image

This should work

    $("div").mouseover(function(){
        $(this).attr("style","cursor: url('red_bucket.svg'), pointer;");
    });