I need to use superuser privileges quite often and not so particular about security, but still want to work mainly under my own user. The solution is to set sudo not to require password for my user:
sudoedit /etc/sudoers
add following line to the end:
your_user_name ALL=NOPASSWD:ALL
As noted this is basically a security risk, so apply only if you are sure what you are doing.