$(document).ready(function(){

    $(".btn-submit-nextstep").mouseover(function(){
        $(this).css("cursor","pointer");
    });

    $(".btn-submit-nextstep").mouseout(function(){
        $(this).css("cursor","");
    });

    $("#id_photo").mouseover(function(){
        $(this).css("cursor","pointer");
    });

    $("#id_photo").mouseout(function(){
        $(this).css("cursor","");
    });

    $("#id_profile_picture").mouseover(function(){
        $(this).css("cursor","pointer");
    });

    $("#id_profile_picture").mouseout(function(){
        $(this).css("cursor","");
    });

    $("#file1").mouseover(function(){
        $(this).css("cursor","pointer");
    });

    $("#file1").mouseout(function(){
        $(this).css("cursor","");
    });

});