$(function(){
    $('button, :submit').button();

    $('[url]').click(function(){
        document.location = $(this).attr('url');
    });
});
