Radionova.topLists = {

	initTeaser: function(){
		var el = jQuery(".tab-content .top-list")[0]; //get the first matching element
		if(!el){ //abort if element doesn't exist
			return;
		}
        jQuery(".tab-content .top-list").addClass("song-list").each(function(){
            jQuery(this).find("li").each(function(index){
                jQuery(this).prepend('<span class="number">'+(index+1)+'</span>');
            });
        });
	},

	initArticle: function(){
		var el = jQuery(".article-content .top-list")[0]; //get the first matching element
		if(!el){ //abort if element doesn't exist
			return;
		}
        jQuery(".article-content .top-list").addClass("song-list").find("li").each(function(index){
            jQuery(this).prepend('<span class="number">'+(index+1)+'</span>');
        });
	}

};

