$('#spinner').click(function() {
        var $this = $(this);
        var opts = { position: 'center', hide: true };
        $this.spinner(opts);
        setTimeout(function() {
                $this.spinner('remove');
        }, 5000);
        return false;
});
