// Server Side and Client Side - Apple... Something I never do.. eh

if CLIENT then
function ttturlsong()
        if LocalPlayer().channel ~= nil && LocalPlayer().channel:IsValid() then
                LocalPlayer().channel:Stop()
        end
        sound.PlayURL(url,"http://dl.dropboxusercontent.com/u/192408473/iwins53765.wav",function(ch)
                if ch != nil and ch:IsValid() then
                        ch:Play()
                        LocalPlayer().channel = ch
                end
                end)
end
usermessage.Hook("ttturlsong",ttturlsong)
end


if SERVER then
function EndMusic (res)
if res == WIN_INNOCENT then
		umsg.Start("ttturlsong")
		umsg.End()
elseif res == WIN_TIMELIMIT then
		umsg.Start("ttturlsong")
		umsg.End()
elseif res == WIN_TRAITOR then
		umsg.Start("ttturlsong")
		umsg.End()
end
hook.Add("TTTEndRound", "EndRoundMusic", EndMusic)
end