Setting your default to read uncommitted is not a good idea.  Your will undoubtedly introduce inconsistencies and end up with a problem that is worse than what you have now.  Snapshot isolation might work well, but it is a drastic change to the way Sql Server works and puts a *huge* load on tempdb.

Here is what you should do: use try-catch (in T-SQL) to detect the deadlock condition.  When it happens, just re-run the query.  This is standard database programming practice.  

There are good examples of this technique in Paul Nielson's [Sql Server 2005 Bible][1].

Here is a quick template that I use:

    -- Deadlock retry template
    
    declare @lastError int;
    declare @numErrors int;
    
    set @numErrors = 0;
    
    LockTimeoutRetry:
    
    begin try;

    -- The query goes here

    return; -- this is the normal end of the procedure

    end try begin catch
        set @lastError=@@error
        if @lastError = 1222 or @lastError = 1205 -- Lock timeout or deadlock
        begin;
            if @numErrors >= 3 -- We hit the retry limit
            begin;
                raiserror('Could not get a lock after 3 attempts', 16, 1);
                return -100;
            end;

            -- Wait and then try the transaction again
            waitfor delay '00:00:00.25';
            set @numErrors = @numErrors + 1;
            goto LockTimeoutRetry;

        end;

        -- Some other error occurred
        declare @errorMessage nvarchar(4000), @errorSeverity int
        select    @errorMessage = error_message(),
                @errorSeverity = error_severity()

        raiserror(@errorMessage, @errorSeverity, 1)

        return -100
    end catch;    



  [1]: http://www.amazon.com/Server-2005-Bible-Paul-Nielsen/dp/0764542567