    document.write('<div class="top10Container"></div>');
    var object = $('.top10Container');
	$('<div class="top10_logo"><a href="http://www.charts.dj"><img src="http://www.myhitparade.de/images/top10_logo.png" alt="www.charts.dj" /></a></div>').appendTo(object);
    $('<h1>Meine bei <a href="http://www.charts.dj">www.charts.dj</a> getippten Top10-Charts der Woche</h1>').appendTo(object);
	
    
    if(object) {
        var list = $('<ul class="top10_list">').appendTo(object);
        if(user_key)
        {
            var key = user_key;
            var url = 'http://www.myhitparade.de/top10.php?user_key='+key+'&callback=?';
            $.getJSON(url, function(data){
                $.each(data.results, function(i,item){
                    
                    var num_tmpl       = '<div class="top10_num">'+ item.num +'</div>';
                    var cover_tmpl     = '<div class="top10_cover"><img width="35" height="35" src="http://www.myhitparade.de/images/covers/thumbs/'+item.data.cover+'" /></div>';
                    var interpret_tmpl = '<div class="top10_interpret">'+ item.data.interpret +'</div>'; 
                    var titel_tmpl     = '<div class="top10_titel">'+ item.data.titel +'</div>';
                    var label_tmpl     = '<div class="top10_label">'+ item.data.label +'</div>';
                    
                    list.append('<li>' + num_tmpl + cover_tmpl + interpret_tmpl + titel_tmpl + label_tmpl + '</li>');
                });
                $('<div style="clear:both;"></div>').appendTo(object);
            });
        }
    }
