            function UpdateStreams(){
                $("#listOfstreamers").html("<ul id='liveStreamers'>");
                $.ajax({
                    type: "GET",
                    url: "/.lib/streamp.php",
                    data: "action=update&game=lol",
                    dataType: 'xml',
                    success: (function(data){

                        $(data).find('item').each(function(){
                            $("#liveStreamers").append('<li id="' + $(this).find("uid").text() + '">'+$(this).find("name").text() + '(' + $(this).find("viewers").text() +')</li>');
                            $("#" + $(this).find('uid').text()).click(function(){
                                ChangeStreamer(this.id)
                            });
                        })

                    })
                });
                $("#listOfstreamers").append = "</ul>";
            }
            function ChangeStreamer(uid){
//                if ($("#player_banner").html){
                    $("#player_banner").remove();
//                    $("#own3d_player").show();
                    $("#own3d_player").trigger('click');
                    $("#own3d_player").css("display", "block");
//                    $("#own3d_player").css("style", "display: block");
//                }
                $.ajax({
                    type: "GET",
                    url: "/.lib/streamp.php",
                    data: "action=getStreamer&uid=" + uid,
                    dataType: 'text',
                    success: (function(data){
                        $("#own3d_player > param:first").attr('value', 'http://www.own3d.tv/livestream/' + uid);
                        $("#own3d_player > embed").attr('src', 'http://www.own3d.tv/livestream/' + uid);
                        $("#own3d_player").attr('data', 'http://www.own3d.tv/livestream/' + uid);
                        $("#stream_name").html($(data).find('name'));
                        $("#stream_description").html($(data).find('description'));
                        $("#player_banner").remove();
                        $("#own3d_player").show();
                        $("#own3d_player").trigger('click');
                        $("#own3d_player").css("display", "block");
                    })
                });
            }
