socketIO.on('accoffer', function(data){
if (data.steamid == getSteamID()) {
$('.acceptoffer').removeClass('hidden');
setTimeout(function(){
$('.acceptoffer').addClass('hidden');
}, 10000);
animation: {
open: 'animated bounceInRight',
close: 'animated bounceOutRight'
}
}
});