diff --git a/VERSIONS_HOTLINE/28732 b/VERSIONS_HOTLINE/28732
new file mode 100644
index 0000000000000000000000000000000000000000..6f0f6f21f3aac979fd40e5ca703ef4ad3082f81b
--- /dev/null
+++ b/VERSIONS_HOTLINE/28732
@@ -0,0 +1 @@
+ - ticket #28732 : Last FM: adaptation à la nouvelle API
\ No newline at end of file
diff --git a/application/modules/opac/controllers/NoticeajaxController.php b/application/modules/opac/controllers/NoticeajaxController.php
index 5e1e39ef6c9851175f71ba025e4f8015610cb8d7..2abc2252f6cf163ee15463429e524757a932e08c 100644
--- a/application/modules/opac/controllers/NoticeajaxController.php
+++ b/application/modules/opac/controllers/NoticeajaxController.php
@@ -244,13 +244,11 @@ class NoticeAjaxController extends Zend_Controller_Action {
 
   public function photosAction() {
     session_write_close();
-    $notice = $this->notice->getNotice("JA");
-
-    $photos = ($notice["type_doc"]==3)
-      ? Class_WebService_Lastfm::getInstance()->getPhotos($notice["A"])
+    $photos = ($this->notice->isDisc())
+      ? Class_WebService_Lastfm::getInstance()->getPhotos($this->notice->getAuteurPrincipal())
       : [];
 
-    $html = $this->notice_html->getPhotos($photos);
+    $html = (new Class_NoticeHtml($this->notice))->getPhotos($photos);
     $this->_sendResponseWithScripts($html);
   }
 
diff --git a/library/Class/Notice.php b/library/Class/Notice.php
index 3668044a455bd3754d6b0aa71dd0cce0072c7037..0ea59a1e6128490de62ece446719e0eb174b8821 100644
--- a/library/Class/Notice.php
+++ b/library/Class/Notice.php
@@ -459,6 +459,11 @@ class Class_Notice extends Storm_Model_Abstract {
   }
 
 
+  public function isDisc() {
+    return $this->getTypeDoc() == Class_TypeDoc::DISQUE;
+  }
+
+
   public function isArteVOD() {
     return ($this->getTypeDoc() == Class_TypeDoc::ARTEVOD);
   }
diff --git a/library/Class/NoticeHtml.php b/library/Class/NoticeHtml.php
index c9bf0089412dfea32392019fb931e6d3fbb5d63d..16a1cf512e9188f2f5cb4abe012489e0a529d4ce 100644
--- a/library/Class/NoticeHtml.php
+++ b/library/Class/NoticeHtml.php
@@ -224,9 +224,9 @@ class Class_NoticeHtml {
     {
       if( $num % 4 == 0 and $num>0) $html.='</tr><tr>';
       $img = sprintf('<img class="photo" src="%s" title="%s" border="0" onclick="%s" style="cursor:pointer" alt="%s" />',
-                     $photo,
+                     $photo['thumb'],
                      $this->_translate->_("Agrandir l'image"),
-                     "afficher_image('".str_replace("126b","_",$photo)."')",
+                     "afficher_image('" . $photo['full'] . "')",
                      $this->_translate->_("Agrandir l'image"));
 
       $html .= '<td class="photo_onglet">'.$img.'</td>';
diff --git a/library/Class/WebService/Lastfm.php b/library/Class/WebService/Lastfm.php
index 0e51e046d3a86003e0292bf1f08f153623aac233..2134108116ca34926e42e620d6db4855adfb39f8 100644
--- a/library/Class/WebService/Lastfm.php
+++ b/library/Class/WebService/Lastfm.php
@@ -132,50 +132,32 @@ class Class_WebService_Lastfm  extends Class_WebService_Abstract {
     if(!$album) return false;
 
     $data = $this->httpGet($album['url']);
-    // Get de la tables des tracks
-    $pos=strPos($data,'<table id="albumTracklist"');
-    if(!$pos) return false;
-    $posfin=strPos($data,'</table>',$pos);
-    $pos=strPos($data,'<tbody',$pos);
-    $data=substr($data,$pos,($posfin-$pos));
-
-    // Prendre les pistes
-    $volume=1;
+    $dom = new Zend_Dom_Query($data);
+    $elements = $dom->queryXpath('//td[@class="chartlist-name"]//span/a');
+
+    if (!$elements->count())
+      return ['nb_resultats' => 0];
+
     $piste=0;
-    while(true)
-    {
-      // Url ecoute
-      $pos=strPos($data,'playbuttonCell');
-      $pos=strPos($data,">",$pos)+1;
-      $posfin=strPos($data,"</td>",$pos);
-      $lig=trim(substr($data,$pos,($posfin-$pos)));
-
-      // Morceau
-      $pos=strPos($data,'subjectCell',$pos);
-      if(!$pos) break;
-      $posfin=strPos($data,"</td>",$pos);
-      $lig=substr($data,$pos,($posfin-$pos));
-
-      $pos=strScanReverse($lig,'">',-1)+1;
+    foreach($elements as $element) {
       $piste++;
-      $track=trim(str_replace('">', '', substr($lig,($pos+1))));
-      $album["morceaux"][$volume][$piste]["titre"]=strip_tags(str_replace('</a>','',$track));
-      $data=substr($data,$posfin);
+      $album["morceaux"][1][$piste] = ['titre' => $element->textContent];
     }
-    $album["nb_resultats"]=$piste;
 
+    $album['nb_resultats'] = $piste;
     return $album;
   }
 
 
-  public function getPhotos($auteur) {
+
+  protected function _getArtistBaseUrl($auteur) {
     $req = $this->getRequete('artist.search', 'artist', $auteur);
+
     if($this->requete($req)==false)
-      return false;
+      return '';
 
-    $nodes = $this->xml->index["ARTIST"];
-    if(!$nodes)
-      return false;
+    if (!$nodes = $this->xml->index["ARTIST"])
+      return '';
 
     foreach($nodes as $node) {
       $artist = $this->xml->get_child_value($node, "NAME");
@@ -193,58 +175,43 @@ class Class_WebService_Lastfm  extends Class_WebService_Abstract {
       }
     }
 
-    if(!$artist)
-      return false;
+    if (!$artist)
+      return '';
 
-    // Url pour les photos
-    $url=$this->xml->get_child_value($node, "URL")."/+images";
-    if(substr($url,0,4)!="http") $url="http://".$url;
-    $url=str_replace(" ","+",$url);
-
-    $data = $this->httpGet($url);
-
-    // Bloc des photos
-    $pos=strPos($data,'<ul id="pictures"',0);
-    if(!$pos) return false;
-    $posfin=strPos($data,'</ul>',$pos);
-    $data=substr($data,$pos,($posfin-$pos));
-    while(true)
-    {
-      $pos=strPos($data,'<img alt=');
-      if(!$pos) break;
-      $pos=strPos($data,'src=',$pos)+5;
-      $posfin=strPos($data,'"',$pos);
-      $url_img=substr($data,$pos,($posfin-$pos));
-      $photo[]=$url_img;
-      $data = substr($data,$posfin);
-    }
-    return $photo;
+    $url = $this->xml->get_child_value($node, "URL");
+    if (substr($url,0,4) != 'http')
+      $url = 'http://' . $url;
+    return str_replace(' ', '+', $url);
   }
 
 
-  public function getDiscographie($auteur) {
-    $req = $this->getRequete("artist.search","artist",$auteur);
-    if ( $this->requete($req)==false )
-      return false;
+  public function getPhotos($auteur) {
+    if (!$artist_url = $this->_getArtistBaseUrl($auteur))
+      return [];
+
+    $data = $this->httpGet($artist_url . '/+images');
+
+    $dom = new Zend_Dom_Query($data);
+    $elements = $dom->queryXpath('//ul[@class="image-list"]/li/a/img');
+
+    $photos = [];
+    foreach($elements as $element) {
+      $url = $element->getAttribute('src');
 
-    // Controle de l'auteur
-    $nodes=$this->xml->index["ARTIST"];
-    if(!$nodes) return false;
-    foreach($nodes as $node)
-    {
-      $artist=$this->xml->get_child_value($node, "NAME");
-      if($this->compare_expression($auteur,$artist) == true) break;
-      $artist="";
+      $photos []= ['thumb' => $url,
+                   'full' => str_replace('avatar170s',  '770x0', $url)];
     }
-    if(!$artist) return false;
 
-    // Url pour la discographie
-    $url = $this->xml->get_child_value($node, "URL")."/+albums";
-    if (substr($url,0,4)!="http")
-      $url = "http://".$url;
-    $url = str_replace(" ","+",$url);
+    return $photos;
+  }
+
+
+  public function getDiscographie($auteur) {
+    if (!$artist_url = $this->_getArtistBaseUrl($auteur))
+      return [];
+
+    $data = $this->httpGet($artist_url . '/+albums');
 
-    $data = $this->httpGet($url);
     $dom = new Zend_Dom_Query($data);
     $elements = $dom->queryXpath('//section[@id = "artist-albums-section"]/ol/li');
     $albums = [];
diff --git a/library/startup.php b/library/startup.php
index f42fc5cc5a9f06f29c6bdd6c324772cfffff8844..8848a37671a665298e9f47869f7fc5419c77a37c 100644
--- a/library/startup.php
+++ b/library/startup.php
@@ -220,26 +220,25 @@ function setupControllerActionHelper() {
 
 
 function setupHTTPClient($cfg) {
-  //set up HTTP Client to use proxy settings
   $httpClient = new Zend_Http_Client();
-  if ( (isset ($cfg->proxy->host) ) || ($cfg->proxy->host != '') ){
-    $proxyConfig = array(
-                         'adapter'    => 'Zend_Http_Client_Adapter_Proxy',
-                         'proxy_host' => $cfg->proxy->host,
-                         'proxy_port' => $cfg->proxy->port,
-                         'proxy_user' => $cfg->proxy->user,
-                         'proxy_pass' => $cfg->proxy->pass
-    );
-    Zend_Registry::set('http_proxy',$proxyConfig);
+
+  if ( (isset ($cfg->proxy->host) ) && ($cfg->proxy->host != '') ){
+    //set up HTTP Client to use proxy settings
+    $proxy_config = [
+                     'adapter'    => 'Zend_Http_Client_Adapter_Proxy',
+                     'proxy_host' => $cfg->proxy->host,
+                     'proxy_port' => $cfg->proxy->port,
+                     'proxy_user' => $cfg->proxy->user,
+                     'proxy_pass' => $cfg->proxy->pass ];
+    Zend_Registry::set('http_proxy',$proxy_config);
 
     $proxy_adapter = new Zend_Http_Client_Adapter_Proxy();
-    $proxy_adapter->setConfig($proxyConfig);
+    $proxy_adapter->setConfig($proxy_config);
     $httpClient->setAdapter($proxy_adapter);
-  }else{
-    $proxyConfig = null;
   }
 
-  $httpClient->setConfig(array('timeout' => 2));
+  $httpClient->setConfig(['timeout' => 2]);
+
   Zend_Registry::set('httpClient',$httpClient);
 }
 
diff --git a/public/opac/js/recherche.js b/public/opac/js/recherche.js
index 9c3b54f4560efd0996e0cd78ff3bde4314c52f0a..72ba8f08e6fd41508a99d59be036a083c056dd74 100644
--- a/public/opac/js/recherche.js
+++ b/public/opac/js/recherche.js
@@ -225,7 +225,7 @@ function afficher_image(sUrl)
     oBoite.setAttribute("id","img_boite");
     oBoite.setAttribute("class","notice_img");
     oBoite.setAttribute("className","notice_img");
-    oBoite.setAttribute("style","display:block;position:absolute");
+    oBoite.setAttribute("style","display:block;position:absolute;z-index:10000");
     document.body.appendChild(oBoite);
   }
   // Patience
diff --git a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
index 24bdd3045a541256fa14aff0d241883847c1b389..8708173c7104970f43d81dcfc6d3757762830113 100644
--- a/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
+++ b/tests/application/modules/opac/controllers/NoticeAjaxControllerTest.php
@@ -525,7 +525,12 @@ abstract class NoticeAjaxControllerLastFmTestCase extends AbstractControllerTest
 class NoticeAjaxControllerPhotosTest extends NoticeAjaxControllerLastFmTestCase {
   public function setUp() {
     parent::setUp();
-    $this->lastfm->whenCalled('getPhotos')->with('Frodo')->answers(['1.jpg']);
+    $this->lastfm->whenCalled('getPhotos')
+                 ->with('Frodo')
+                 ->answers([
+                            ['thumb' => '1.jpg',
+                             'full' => '1.jpg']
+                            ]);
     $this->dispatch('noticeajax/photos/id_notice/777', true);
   }
 }
diff --git a/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.html b/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.html
deleted file mode 100644
index affdf6683aa4a8ec0ab4d48c644f2576fcc59973..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.html
+++ /dev/null
@@ -1,2081 +0,0 @@
-     
-<!DOCTYPE html>
-<html lang="fr" class="no-js lastfm" data-ad-zone="music:album:overview">
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" />
-    <link rel="profile" href="http://purl.org/uF/2008/03/" />
-        <!–[if IE]><![endif]–>
-
-            <title>Monsieur Gainsbourg Revisited – Various Artists – Écoutez et découvrez de la musique sur Last.fm</title>    
-        <script>(function(e) { e.className = e.className.replace(/\bno-js\b/,'js'); })(document.documentElement)</script>
-
-    <link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch.xml" title="Last.fm" />
-            <meta name="description" content="Various Artists – Monsieur Gainsbourg Revisited (I Call It Art, I Love You ( Me Either ) et plus). 14 titres (50:13). Monsieur Gainsbourg Revisited est sorti 1 août 2006. &quot;Monsieur Gainsbourg Revisited is a tribute album to the works of late French singer/songwriter Serge Gainsbourg. First released on Virgin Records in 2006, it consists of English language cover versions of Gainsbourg songs, performed by a diverse array of contemporary artists. Gainsbourg&amp;#8217;s former wife, Jane Birkin, lent her vocals to one track.&quot; - Wikipedia Découvrez de la musique, des concerts, des vidéos et des images grâce au catalogue online Last.fm."/>
-
-
-            <meta name="robots" content="NOODP" />
-
-        
-                <meta property="og:site_name" content="Last.fm" />
-<meta property="fb:app_id" content="192959324047861" />
-
-            
-                        
-    <meta property="og:title" content="Various Artists – Monsieur Gainsbourg Revisited" />
-    <meta property="og:url" content="http://www.lastfm.fr/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-    <meta property="og:image" content="http://userserve-ak.last.fm/serve/126/50649339.png" />
-
-    
-            <meta property="og:type" content="album" />    
-                <link rel="shortcut icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
-        <link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
-    
-        <meta name="msapplication-TileImage" content="http://cdn.last.fm/flatness/lastfm_win8_tile_144.png" />
-    <meta name="msapplication-TileColor" content="#d51007" />
-    
-        <meta name="apple-itunes-app" content="app-id=585235199">
-
-    
-    
-            <link rev="canonical" href="http://lastfm.fr/+rDDcB" />
-    <link rel="shortlink" href="http://lastfm.fr/+rDDcB" />
-    
-                <link rel="alternate" hreflang="en" href="http://www.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-    
-            <link rel="alternate" hreflang="de" href="http://www.lastfm.de/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="es" href="http://www.lastfm.es/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                        <link rel="alternate" hreflang="it" href="http://www.lastfm.it/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="ja" href="http://www.lastfm.jp/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="pl" href="http://www.lastfm.pl/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="pt" href="http://www.lastfm.com.br/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="ru" href="http://www.lastfm.ru/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="sv" href="http://www.lastfm.se/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-                <link rel="alternate" hreflang="zh" href="http://cn.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited" />
-        
-    
-        <style>html {zoom: 1;}</style>    <script>
-
-        if(top !== self && top.location.domain !== self.location.domain) {
-            (function(d, s) {
-                if(s && s.insertRule) {
-                    s.insertRule('body { display: none !important }', 0);
-                } else if(s && s.addRule) {
-                    s.addRule('body', 'display: none !important');
-                }
-                top.location.replace(d.location.href);
-            })(document, document.styleSheets[0]);
-        }
-</script>
-
-                                        <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/themes/whittle.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/music/album/overview.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/master.css" />
-                        
-        
-<!--[if lt IE 9]>
-    <script>
-
-        window.html5 = {
-            shivCSS: false
-        }
-</script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/html5shiv.js"></script>
-<![endif]-->
-
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
-<script>$.noConflict();</script>
-<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
-<script>
-    if(typeof Prototype === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/prototype.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>
-<script>
-    if(typeof Scriptaculous === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/scriptaculous/scriptaculous.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/mustache-min.js"></script>
-
-<script>SM2_DEFER = true;</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/sm2-min.js"></script>
-
-<script src="http://cdn.last.fm/javascript/javascript/231805/LFM.js"></script>
-
-<script>
-    LFM.set("ParentResource", {"id":"2857031","type":8,"name":"Monsieur Gainsbourg Revisited","url":"\/music\/Various+Artists\/Monsieur+Gainsbourg+Revisited","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/50649339.png","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/50649339.png","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/50649339.png","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/50649339.png","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/50649339.png","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/50649339.png","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/50649339.png","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/50649339\/Monsieur+Gainsbourg+Revisited+Cover.png"},"artistname":"Various Artists","streamable":false,"numtracks":14});
-    LFM.Adserver.showAds = true;
-    LFM.set("Session", {"cookieHost":".lastfm.fr","host":"www.lastfm.fr","staticHost":"http:\/\/cdn.last.fm","wsHost":"ws.audioscrobbler.com","userserveHost":"http:\/\/userserve-ak.last.fm","wsKey":"ceec2bb03d4c5929f0d6667fc266dc75","formtoken":"2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3","location":"fr","language":"fr","ajaxhost":"ajax.last.fm","templatePath":"\/templates\/231606","jsPath":"http:\/\/cdn.last.fm\/javascript\/javascript\/231805","cssPath":"http:\/\/cdn.last.fm\/css\/css\/231774","loggedIn":false});
-    LFM.set("resTypes", {
-        EVENT: 29,
-        ARTIST: 6,
-        ALBUM: 8,
-        TRACK: 9,
-        GROUP: 20,
-        TAG: 32,
-        USER: 4,
-        LABEL: 10
-    });
-    LFM.set("resTypeLookup", {
-        29: "Event",
-        6: "Artist",
-        8: "Album",
-        9: "Track",
-        20: "Group",
-        32: "Tag",
-        4: "User",
-        10: "Label"
-    });
-
-    LFM.set("String", {okText: "OK",cancelText: "Annuler",clickToEditText: "Cliquer pour modifier",savingText: "Enregistrement...",loadingText: "Chargement...",deletingText: "Suppression...",thereWasAnError: "Une erreur s'est produite.",dialogLoadError: "Une erreur s'est produite lors du chargement de ce dialogue.",fileTooBig: "Désolé, le fichier est trop volumineux.",noFile: "Merci de sélectionner un fichier. ",uploadCancelled: "Upload annulé",deleteMessageTitle: "Supprimer le message",deleteMessagePrompt: "Voulez-vous vraiment supprimer ce message ?",deleteFriendPrompt: "Voulez-vous vraiment supprimer cet(te) ami(e) ?",deleteImage: "Voulez-vous vraiment supprimer cette image ?",deleteButtonText: "Supprimer",done: "C'est fait",backText: "Retour",yesText: "Oui",noText: "Non",saveText: "Enregistrer ",saveTitle: "Ajouter au profil",sendText: "Envoyer",sendTitle: "Partager avec vos amis",addTitle: "Ajouter à la bibliothèque",tagTitle: "Ajouter des tags",playlistTitle: "Ajouter à la playlist",befriendTitle: "Ajouter un ami",labsfeedbackTitle: "Donnez-nous votre avis",joinTitle: "Devenir membre du groupe",loved: "Ajouté aux coups de coeur.",RemoveFromLibraryTitle: "Supprimer de la bibliothèque",uploadImageTitle: "Uploader une image",uploadVideoTitle: "Importer une vidéo",usernoteTitle: "Add a note",cleanupBioTitle: "Cleanup Bio",flageventTitle: "Signaler une erreur",setLocationTitle: "Définissez votre localisation",newWindowTooltip: "Ce lien s\'affichera dans une nouvelle fenêtre",unloadWarningMessage: "Ceci va interrompre la lecture",trackLoved: "Vous avez ajouté ce titre à vos coups de cœur",playbackStopped: "Lecture interrompue",loadingTrackInfo: "Chargement des informations sur ce  titre",errorLoadingTrackInfo: "Une erreur s'est produite lors du chargement des informations sur ce titre",emailLineup: "Envoyer par email",uploadMessages: {mayTakeLonger: "Désolé, cela risque de prendre un peu plus de temps que d'habitude. Patientez quelques instants.",uploading: "Transfert en cours...",endUploading: "C'est fait",progressDisplay: "PERCENTUPLOADED% effectués (TRANSFERRATE kb/s) – TIMEREMAINING secondes restantes",progressComplete: "100% effectués",failedRetrying: "Impossible de retrouver l'upload, annulé.",processingMedia: "Prise en charge du média...",unsupportedFormat: "Désolé, le format du fichier que vous avez uploadé n'est pas pris en charge. Réessayez.",uploadError: "Une erreur s'est produite lors du transfert de votre vidéo. Vérifiez que le fichier n'est pas trop volumineux et que son format est pris en charge, puis réessayez."},shortMonths: {'1': " jan.",'2': " fév.",'3': "mars",'4': "avr.",'5': "mai",'6': "juin",'7': "jui.",'8': "août",'9': "sept.",'10': "oct.",'11': "nov.",'12': " déc."},resTypePlural: {29: "Concerts",6: "Artistes",8: "Albums",9: "Titres",20: "Groupes",32: "Tags",4: "Utilisateurs ","friends":   "Amis",10: "Labels"}});LFM.set("Element", {icon_loved_indicator: "<img class=\"icon loved_indicator_icon\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_tag: "<img class=\"icon tag_icon\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_dismiss: "<img class=\"icon dismiss_icon\" width=\"16\" height=\"16\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_play: "<img class=\"transparent_png play_icon\" width=\"13\" height=\"13\" alt=\"\u00c9couter\" src=\"http:\/\/cdn.last.fm\/flatness\/preview\/play_indicator.png\" style=\"\" \/>"});
-        LFM.AdPlacements = ["beacon","interstitial","skin","leaderboard","mpu","relatedcontent","middleleaderboard","lowerleaderboard"];
-</script>
-
-
-<script data-main="http://cdn.last.fm/javascript/javascript/231805/modules-built/init" src="http://cdn.last.fm/javascript/javascript/231805/lib/requirejs/require-min.js"></script>
-
-    <script src="http://cdn.last.fm/javascript/javascript/231805/components.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/dialog.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/form/typeahead.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/uuid.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/modernizr.js"></script>
-
-<script>
-
-LFM.Page.Tracker = new LFM.Analytics.Tracker('Music/Album/Overview', window.location.host);
-
-document.observe('dom:loaded', function() {
-
-    LFM.Page.Tracker.bindOutboundLinkListener();
-    LFM.Page.Tracker.bindEventListener();
-
-});
-
-</script>
-
-
-    
-    <script>document.observe("dom:loaded", function () { if (typeof ieHover !== 'undefined') ieHover.setUp(); });</script>
-
-    <script data-require="googleanalytics">LFM.Analytics = LFM.Analytics || {};LFM.Analytics.Helpers = {webhost:"www.lastfm.fr",registrationStatus:"LoggedOut",visitorStatus: "Anonymous",artistNameString:"Various Artists",transformedUrl:"music/album/overview"}</script></head>
-
-
-
-<!--[if lt IE 7 ]> <body class="r-album a-overview lfmRed  lang-fr theme-whittle ie ie6"> <![endif]-->
-<!--[if IE 7 ]>    <body class="r-album a-overview lfmRed  lang-fr theme-whittle ie ie7"> <![endif]-->
-<!--[if IE 8 ]>    <body class="r-album a-overview lfmRed  lang-fr theme-whittle ie ie8"> <![endif]-->
-<!--[if IE 9 ]>    <body class="r-album a-overview lfmRed  lang-fr theme-whittle ie ie9"> <![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <body class="r-album a-overview lfmRed  lang-fr theme-whittle" > <!--<![endif]-->
-
-        <script>var WRInitTime = +new Date();</script>
-
-    
-            <div id="page" class="page-hack"></div>        <div class=" page-wrapper">
-            
-
-<div id="LastAd_beacon" class="LastAd ad-beacon inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="beacon" data-ad-collapsible>
-    <span>     
-            <script>
-
-
-var googletag = googletag || {};
-googletag.cmd = googletag.cmd || [];
-
-(function() {
-    var useSSL = 'https:' == document.location.protocol;
-    var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
-    document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
-})();
-
-</script>
-
-<script>
-    
-    var googleSlots = { };
-    var googleDisplayed = false;
-    
-
-    googletag.cmd.push(function() {
-        var unitName = "/8264/row-lastfm/music/album/overview",
-            isVR = false,
-            isDynamic = false,
-            isAnonHome = false;
-    
-
-    function hasPlacement(placement) {
-        return LFM.AdPlacements.indexOf(placement) >= 0;
-    };
-
-    var leaderboardSizes = [[728,90],[970,66],[970,90],[860,55]];
-    // The leaderboard slot height is fixed at 90px when using dynamic ads,
-    // showing a taller leaderboard would cause the page to jump, so we don't request them
-    if ( ! isDynamic) {
-        leaderboardSizes.push([880,150],[880,170],[880,200],[900,150],[900,250],[970,200],[970,250],[860,250],[980,250]);
-    }
-    if (hasPlacement('leaderboard')) {
-        googleSlots['leader_top'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    var mpuSizes = [[300,250],[138,108]] ;
-    if (! isAnonHome) {
-        mpuSizes.push([300,600]);
-    }
-
-    var lowerMpuSizes = [[300,250]];
-
-    if (hasPlacement('mpu')) {
-        googleSlots['mpu_top'] = googletag.defineSlot(unitName, mpuSizes, "mpu_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('lowermpu')) {
-        googleSlots['mpu_bottom'] = googletag.defineSlot(unitName, lowerMpuSizes, "mpu_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('skin')) {
-        googleSlots['skin'] = googletag.defineSlot(unitName, [1600,1000], "skin")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('interstitial')) {
-        googleSlots['intromercial'] = googletag.defineOutOfPageSlot(unitName, "intromercial")
-        .addService(googletag.pubads());
-    }
-
-    if (hasPlacement('lowerleaderboard')) {
-        googleSlots['leader_bottom'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('sky')) {
-        googleSlots['sky_top'] = googletag.defineSlot(unitName, [160,600], "sky_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    // Collapse as soon as display() for the slot is reached and expand only when there is an ad
-    // i.e. no flickering
-    googletag.pubads().collapseEmptyDivs(true);
-
-    if ( ! isVR) {
-        googletag.pubads().enableSingleRequest();    
-
-        if ( ! isDynamic) {
-            googletag.pubads().enableSyncRendering();    
-        }
-    }
-
-    if (screen.width >= 1280) {
-        googletag.pubads().setTargeting("inskin", "yes");
-    }
-
-    
-
-            googletag.pubads().setTargeting("ar", "variousartists,variousartists");
-            googletag.pubads().setTargeting("tag", "totecradio,french,cover,covers,iveldiealbums,luvassavaihtelevaa,variousartistsareapitaonlastfm,gainsbourgcover,elektrischerindierock,mixit");
-            googletag.pubads().setTargeting("geo", "FR");
-            googletag.pubads().setTargeting("lang", "fr");
-            googletag.pubads().setTargeting("res", "2857031");
-            googletag.pubads().setTargeting("established", "1");
-            googletag.pubads().setTargeting("fdl", "1");
-    
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    googletag.pubads().setTargeting("viewguid", LFM.viewGuid);
-
-    googletag.enableServices();
-    
-
-  });
-
-</script>        
-    </span>
-</div>
-    <div id="LastAd_interstitial" class="LastAd ad-interstitial inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="interstitial" data-ad-collapsible>
-    <span>     
-            <div id="intromercial">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("intromercial"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_skin" class="LastAd ad-skin inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="skin" data-ad-collapsible>
-    <span>     
-            <div id="skin">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("skin"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_leaderboard" class="LastAd ad-leaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="leaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_top">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_top"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-<div class="masthead-wrapper">
-
-    
-    
-                
-    <header class="masthead" role="banner">
-        <h1>
-            <a href="/" class="ir lastfm-logo">
-                Last.fm
-            </a>
-        </h1>
-
-        <form
-            class="
-                site-search
-                search-autocomplete
-                search-autocomplete--main
-            "
-            method="get"
-            action="/search"
-            role="search"
-            data-require="search/sitesearch"
-            data-template="search"
-            data-url="/search/autocomplete"
-                    >
-            <fieldset>
-                <legend class="rm">Rechercher sur le site</legend>
-                <input type="text" name="q" autocorrect="off" autocomplete="off" placeholder="Recherche de musique" size="26" class="js-search search-box" />
-                <div class="js-search-progress search-progress ir">En chargement</div>
-                <input type="hidden" name="from" value="ac" />
-                <button type="submit" class="search-submit icon iconleft iconleft--search" title="Recherche"></button>
-            </fieldset>
-        </form>
-
-        <nav role="navigation">
-            <ul class="primary-nav remove-bottom-margin">
-                <li class="primary-nav-item">
-                    <a href="/music" class="primary-nav-link">Musique</a>
-                </li>
-                <li id="listenNav" class="primary-nav-item">
-                    <a href="/listen" class="primary-nav-link">Écouter</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/events" class="primary-nav-link">Concerts</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/charts" class="primary-nav-link">Charts</a>
-                </li>
-                                            </ul>
-
-            <div class="masthead-right" role="navigation">
-                                    <a href="/join" class="join" data-analytics-action="SignUpClick" data-analytics-label="Header">Rejoignez-nous</a>
-                    <a href="/login" id="login-link" class="btn btn--small btn--header btn--rounded login">Connexion</a>
-                            </div>
-        </nav>
-    </header>
-        
-    <link rel="stylesheet" type="text/css" href="//embed.spotify.com/static/css/mediabar/mediabar-lastfm.css" />
-<div class="persistent-bar">
-    <div class="spotify-mediabar-wrapper">
-        <div id="spotify-mediabar" class="spotify-mediabar" data-require="spotify/spotifymediabar"></div>
-    </div>
-    <a href="#" class="spotify-mediabar-feedback" data-require="labfeedbackbutton" data-lab-name="spotifyplayback">
-        <span class="beta-badge">Bêta</span> Avis
-    </a>
-</div>
-<div id="spotify-signup-complete-modal" data-require="spotify/signupcompletemodal">
-    <div class="sparse-modal js-modal"></div>
-</div>
-    </div>
-<article class="content album-overview" data-require="music/albumpage" itemscope itemtype="http://schema.org/MusicAlbum">
-    <header class="    page-head
-    with-crumbtrail
-    with-image
-    clearit
-">
-            <div class="crumb-wrapper">
-            <div class="top-crumb">
-                <a href="/music/Various+Artists"    >                    <img class="crumb-image" src="http://userserve-ak.last.fm/serve/64s/46209667.png" alt="Miniature de Various Artists" width="60" height="60" />
-            Various Artists</a>            </div>
-                <h1 itemprop="name">
-                Monsieur Gainsbourg Revisited        </h1>
-
-        </div>
-    
-    <nav class="secondary-nav" role="navigation" data-require="secondarynav">
-        <ul class="visible-menu">
-            <li class=" first "><a href="/music/Various+Artists/+tracks">Titres</a></li>        <li class=" current "><a href="/music/Various+Artists/+albums">Albums</a></li>
-                <li><a href="/music/Various+Artists/+images">Images</a></li>        
-                <li><a href="/music/Various+Artists/+videos">Vidéos</a></li>        
-        <li><a href="/music/Various+Artists/+events">Concerts</a></li>
-                    <li><a href="/music/Various+Artists/+wiki">Biographie</a></li>        
-        <li><a href="/music/Various+Artists/+similar">Artistes similaires</a></li>        <li><a href="/music/Various+Artists/+charts">Charts</a></li>        <li><a href="/music/Various+Artists/+tags">Tags</a></li>        <li><a href="/music/Various+Artists/+listeners">Auditeurs</a></li>        <li><a href="/music/Various+Artists/+journal">Articles</a></li>        <li><a href="/music/Various+Artists/+news">Actualités</a></li>        <li><a href="/music/Various+Artists/+groups">Groupes</a></li>    
-</ul>    <div class="drop-down-menu more">
-    <a href="#" class="menu-toggle">Plus...</a>
-    <ul class="hidden-menu"></ul>
-</div></nav></header>
-    <span itemprop="byArtist" class="hide" itemscope itemtype="http://www.schema.org/MusicGroup">
-        <meta itemprop="name" content="Various Artists" />
-        <meta itemprop="url" content="/music/Various+Artists" />
-    </span>
-
-    <div class="r">
-        <div class="g8">
-            <section class="r album-detail">
-                    
-                                        
-                    
-                    <div class="g album-cover-wrapper " >
-                                                    <a href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+images"><img src="http://userserve-ak.last.fm/serve/_/50649339/Monsieur+Gainsbourg+Revisited+Cover.png" class="album-cover" itemprop="image" /></a>
-                                            </div>
-                <div class="g3">
-                    <dl class="detail">
-                                                    <dt>Label</dt>
-                            <dd>
-                                <a href="/label/Verve+(Fontana)"    >Verve (Fontana)<br /><img class="defaultImage  rounded" width="34" alt="" src="http://cdn.last.fm/flatness/catalogue/noimage/2/default_label_small.png" /></a>                            </dd>
-                                                                            <dt>Date de sortie</dt>
-                            <dd>1 août 2006                                                                            <dt>Durée de lecture</dt>
-                            <dd>14 titres</dd>
-                            <dt>Longueur de l'album</dt>
-                            <dd>50:13</dd>
-                                            </dl>
-
-                                        <section>
-        <h2 class="rm">Tags</h2>
-                    <section class="global-tags">
-                <h3 class="rm">Tous les tags</h3>
-                                    <meta itemprop="keywords" content="totec radio, french, cover, covers, iveldie albums, luvassa vaihtelevaa, various artists are a pita on lastfm, gainsbourg cover, elektrischerindierock, mixit, run for cover, milestones, nu profile, jarvis cocker fan radio, my collection, toget, j, compilation, sentimental, new, fantastic, albums, chanson, happy, favorites, pop, feelgood, chillout, rock">
-                                
-                <ul class="tags ">
-    <li>
-        <a href="/tag/totec%20radio" rel="tag">totec radio</a></li> <li><a href="/tag/french" rel="tag">french</a></li> <li><a href="/tag/cover" rel="tag">cover</a></li> <li><a href="/tag/covers" rel="tag">covers</a></li> <li><a href="/tag/iveldie%20albums" rel="tag">iveldie albums</a>    </li>
-</ul>                
-                                                                    <button
-            title="Taguer Monsieur Gainsbourg Revisited"
-            class="
-                btn
-                btn--brand-blue
-                btn--small
-                iconleft
-                iconleft--tag
-                btn--icon-only
-                add-tag
-                needs-js
-            "
-            data-require="tagbutton"
-        >Taguer Monsieur Gainsbourg Revisited</button>
-    
-                                                    
-                                    <a href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+tags"     class="more-tags">Plus de tags</a>                           
-            </section>
-                            </section>
-                </div>
-            </section>
-
-                                    <section class="album-tracklist">
-                <h2 class="rm">Liste des titres</h2>
-                
-                <table id="albumTracklist" class="candyStriped chart" odd="1">
-                            <thead>
-                <td class="positionCell">&nbsp;</td>
-                <td class="playbuttonCell">&nbsp;</td>
-                <td class="subjectCell">Titre</td>
-                <td class="lovedCell">&nbsp;</td>
-                <td class="multibuttonCell">&nbsp;</td>
-                <td class="durationCell">Durée</td>
-                <td class="reachCell">Auditeurs</td>
-            </thead>
-            <tbody>
-        <tr class="first odd" id="r9_64010156_1417828368" data-track-id="64010156"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                2            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Cat+Power/_/I+Love+You+(+Me+Either+)">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Cat+Power"    >Cat Power</a> - <a href="/music/Cat+Power/_/I+Love+You+(+Me+Either+)"     album=""><span itemprop="name">I Love You ( Me Either )</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Cat+Power/_/I+Love+You+(+Me+Either+)"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                5:15
-            </td>
-                        <td class="reachCell">
-                41&nbsp;619
-            </td>
-                </tr><tr class="" id="r9_48689488_883476882" data-track-id="48689488"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                3            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Jarvis+Cocker/_/I+Just+Came+To+Tell+You+That+I%27m+Going">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Jarvis+Cocker"    >Jarvis Cocker</a> - <a href="/music/Jarvis+Cocker/_/I+Just+Came+To+Tell+You+That+I%27m+Going"     album=""><span itemprop="name">I Just Came To Tell You That I'm Going</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Jarvis+Cocker/_/I+Just+Came+To+Tell+You+That+I%27m+Going"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:38
-            </td>
-                        <td class="reachCell">
-                28&nbsp;916
-            </td>
-                </tr><tr class="odd" id="r9_42978796_1252814611" data-track-id="42978796"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                4            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Portishead/_/Requiem+For+Anna">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Portishead"    >Portishead</a> - <a href="/music/Portishead/_/Requiem+For+Anna"     album=""><span itemprop="name">Requiem For Anna</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Portishead/_/Requiem+For+Anna"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                2:39
-            </td>
-                        <td class="reachCell">
-                14&nbsp;061
-            </td>
-                </tr><tr class="" id="r9_50658112_1916636985" data-track-id="50658112"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                5            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Faultline/_/Requiem+For+A+Jerk">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Faultline"    >Faultline</a> - <a href="/music/Faultline/_/Requiem+For+A+Jerk"     album=""><span itemprop="name">Requiem For A Jerk</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Faultline/_/Requiem+For+A+Jerk"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:00
-            </td>
-                        <td class="reachCell">
-                947
-            </td>
-                </tr><tr class="odd" id="r9_44932701_1670956638" data-track-id="44932701"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                6            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Michael+Stipe/_/L%27H%C3%B4tel">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Michael+Stipe"    >Michael Stipe</a> - <a href="/music/Michael+Stipe/_/L%27H%C3%B4tel"     album=""><span itemprop="name">L'Hôtel</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Michael+Stipe/_/L%27H%C3%B4tel"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                4:27
-            </td>
-                        <td class="reachCell">
-                20&nbsp;560
-            </td>
-                </tr><tr class="" id="r9_47412836_2138018962" data-track-id="47412836"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                7            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Tricky/_/Goodbye+Emmanuelle">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Tricky"    >Tricky</a> - <a href="/music/Tricky/_/Goodbye+Emmanuelle"     album=""><span itemprop="name">Goodbye Emmanuelle</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Tricky/_/Goodbye+Emmanuelle"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:31
-            </td>
-                        <td class="reachCell">
-                2&nbsp;824
-            </td>
-                </tr><tr class="odd" id="r9_51490679_1813663562" data-track-id="51490679"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                8            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Marianne+Faithfull/_/Lola+R.+For+Ever">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Marianne+Faithfull"    >Marianne Faithfull</a> - <a href="/music/Marianne+Faithfull/_/Lola+R.+For+Ever"     album=""><span itemprop="name">Lola R. For Ever</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Marianne+Faithfull/_/Lola+R.+For+Ever"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:05
-            </td>
-                        <td class="reachCell">
-                806
-            </td>
-                </tr><tr class="" id="r9_51490682_1479938677" data-track-id="51490682"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                9            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Gonzales/_/Boomerang+2005">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Gonzales"    >Gonzales</a> - <a href="/music/Gonzales/_/Boomerang+2005"     album=""><span itemprop="name">Boomerang 2005</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Gonzales/_/Boomerang+2005"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:25
-            </td>
-                        <td class="reachCell">
-                690
-            </td>
-                </tr><tr class="odd" id="r9_50929167_1656464271" data-track-id="50929167"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                10            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Marc+Almond/_/Boy+Toy">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Marc+Almond"    >Marc Almond</a> - <a href="/music/Marc+Almond/_/Boy+Toy"     album=""><span itemprop="name">Boy Toy</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Marc+Almond/_/Boy+Toy"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                4:02
-            </td>
-                        <td class="reachCell">
-                578
-            </td>
-                </tr><tr class="" id="r9_42369422_1941924474" data-track-id="42369422"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                12            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/The+Rakes/_/Just+A+Man+With+A+Job">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/The+Rakes"    >The Rakes</a> - <a href="/music/The+Rakes/_/Just+A+Man+With+A+Job"     album=""><span itemprop="name">Just A Man With A Job</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/The+Rakes/_/Just+A+Man+With+A+Job"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                2:51
-            </td>
-                        <td class="reachCell">
-                12&nbsp;905
-            </td>
-                </tr><tr class="odd" id="r9_42981519_1204381851" data-track-id="42981519"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                13            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/The+Kills/_/I+Call+It+Art">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/The+Kills"    >The Kills</a> - <a href="/music/The+Kills/_/I+Call+It+Art"     album=""><span itemprop="name">I Call It Art</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/The+Kills/_/I+Call+It+Art"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                3:09
-            </td>
-                        <td class="reachCell">
-                78&nbsp;858
-            </td>
-                </tr><tr class="" id="r9_42954507_832433003" data-track-id="42954507"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                14            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Carla+Bruni/_/Those+Little+Things">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Carla+Bruni"    >Carla Bruni</a> - <a href="/music/Carla+Bruni/_/Those+Little+Things"     album=""><span itemprop="name">Those Little Things</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Carla+Bruni/_/Those+Little+Things"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                2:08
-            </td>
-                        <td class="reachCell">
-                10&nbsp;988
-            </td>
-                </tr><tr class="odd" id="r9_63607045_1413969307" data-track-id="63607045"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                15            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/James+Iha/_/The+Ballad+Of+Bonnie+And+Clyde">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/James+Iha"    >James Iha</a> - <a href="/music/James+Iha/_/The+Ballad+Of+Bonnie+And+Clyde"     album=""><span itemprop="name">The Ballad Of Bonnie And Clyde</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/James+Iha/_/The+Ballad+Of+Bonnie+And+Clyde"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                4:25
-            </td>
-                        <td class="reachCell">
-                519
-            </td>
-                </tr><tr class="last" id="r9_65707462_857052864" data-track-id="65707462"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                16            </td>
-            <td class="playbuttonCell">
-                            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.lastfm.fr/music/Nina+Persson/_/Angel%27s+Fall">
-                <meta itemprop="inAlbum" content="Monsieur Gainsbourg Revisited">
-                                
-                                                                                <a href="/music/Nina+Persson"    >Nina Persson</a> - <a href="/music/Nina+Persson/_/Angel%27s+Fall"     album=""><span itemprop="name">Angel's Fall</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Nina+Persson/_/Angel%27s+Fall"     class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>            </td>
-            <td class="durationCell">
-                4:38
-            </td>
-                        <td class="reachCell">
-                512
-            </td>
-                </tr>
-        </tbody>
-</table>                            </section>
-                        
-                           <section>
-                   <h2>À propos de cet album</h2>
-                   
-
- <div class="wiki">
- <div id="wikiAbstract" class="wiki-abstract" data-require="music/wiki">
- <div class="memo">
- Nous n'avons pas encore de description pour cet album. <a href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+wiki/edit" >Envie de nous donner un coup de main</a> ?
- </div>
- </div>
- </div>
-
-               </section>
-            
-                                    <section>
-                <h2><a href="/music/Various+Artists/+albums"    >Autres sorties</a></h2>
-                <ul class="albums r">
-    <li class=" first ">
-                                <a href="/music/Various+Artists/Eurovision+Song+Contest+2009"     class="g2 other-release">                        <div class="cover-image  " style="background-image: url('http://userserve-ak.last.fm/serve/126s/59329839.jpg');">
-    <img class="cover-image-image" src="http://userserve-ak.last.fm/serve/126s/59329839.jpg" alt="" />
-        <div class="text-over-image ">
-        <span class="text-over-image-text">Eurovision Song Contest 2009</span>
-            </div>
-
-</div>                    </a>                
-        </li><li>
-                                <a href="/music/Various+Artists/8,+8.5,+9,+Remixes"     class="g2 other-release">                        <div class="cover-image  " style="background-image: url('http://userserve-ak.last.fm/serve/126s/8592201.jpg');">
-    <img class="cover-image-image" src="http://userserve-ak.last.fm/serve/126s/8592201.jpg" alt="" />
-        <div class="text-over-image ">
-        <span class="text-over-image-text">8, 8.5, 9, Remixes</span>
-            </div>
-
-</div>                    </a>                
-        </li><li>
-                                <a href="/music/Various+Artists/Decay+Product"     class="g2 other-release">                        <div class="cover-image  " style="background-image: url('http://userserve-ak.last.fm/serve/126s/80570943.jpg');">
-    <img class="cover-image-image" src="http://userserve-ak.last.fm/serve/126s/80570943.jpg" alt="" />
-        <div class="text-over-image ">
-        <span class="text-over-image-text">Decay Product</span>
-            </div>
-
-</div>                    </a>                
-        </li><li class=" last ">
-                                <a href="/music/Various+Artists/Shrek"     class="g2 other-release">                        <div class="cover-image  " style="background-image: url('http://userserve-ak.last.fm/serve/126s/86888899.png');">
-    <img class="cover-image-image" src="http://userserve-ak.last.fm/serve/126s/86888899.png" alt="" />
-        <div class="text-over-image ">
-        <span class="text-over-image-text">Shrek</span>
-            </div>
-
-</div>                    </a>                
-        </li>
-</ul>            </section>
-                        
-            <section class="album-listening-trend">
-                <h2>Tendance d'écoute</h2>
-
-        <script src='https://www.google.com/jsapi?autoload={"modules":[{"name":"visualization","version":"1","packages":["corechart"]}]}'></script>
-
-    <div class="catalogue-scrobble-graph needs-js" data-source="scrobblegraph" data-require="music/scrobblegraph">
-        <div class="catalogue-scrobble-graph-top-data">
-            <strong>152&nbsp;502</strong><span class="lite">auditeurs en tout</span>
-        </div>
-        <div class="catalogue-scrobble-graph-top-data">
-            <strong>428&nbsp;467</strong><span class="lite">scrobbles  en tout</span>
-        </div>
-                        <div class="catalogue-scrobble-graph-inner-wrapper">
-            <div class="catalogue-scrobble-graph-title">Tendances récentes des auditeurs :</div>
-            <div class="catalogue-scrobble-graph-container"></div>
-        </div>
-
-        <script>
-                (function() {
-
-            LFM.Data = LFM.Data || {};
-            LFM.Data.scrobblegraph = [
-                              [
-                  new Date(1405252800*1000),
-                  22,
-                  22,
-                  ' Dim. 13 jui. -  Dim. 20 jui.\u000D\u000A22 auditeurs'
-                ]
-                ,                              [
-                  new Date(1404648000*1000),
-                  28,
-                  28,
-                  ' Dim. 6 jui. -  Dim. 13 jui.\u000D\u000A28 auditeurs'
-                ]
-                ,                              [
-                  new Date(1404043200*1000),
-                  20,
-                  20,
-                  ' Dim. 29 juin -  Dim. 6 jui.\u000D\u000A20 auditeurs'
-                ]
-                ,                              [
-                  new Date(1403438400*1000),
-                  13,
-                  13,
-                  ' Dim. 22 juin -  Dim. 29 juin\u000D\u000A13 auditeurs'
-                ]
-                ,                              [
-                  new Date(1402833600*1000),
-                  22,
-                  22,
-                  ' Dim. 15 juin -  Dim. 22 juin\u000D\u000A22 auditeurs'
-                ]
-                ,                              [
-                  new Date(1402228800*1000),
-                  20,
-                  20,
-                  ' Dim. 8 juin -  Dim. 15 juin\u000D\u000A20 auditeurs'
-                ]
-                ,                              [
-                  new Date(1401624000*1000),
-                  21,
-                  21,
-                  ' Dim. 1 juin -  Dim. 8 juin\u000D\u000A21 auditeurs'
-                ]
-                ,                              [
-                  new Date(1401019200*1000),
-                  19,
-                  19,
-                  ' Dim. 25 mai -  Dim. 1 juin\u000D\u000A19 auditeurs'
-                ]
-                ,                              [
-                  new Date(1400414400*1000),
-                  24,
-                  24,
-                  ' Dim. 18 mai -  Dim. 25 mai\u000D\u000A24 auditeurs'
-                ]
-                ,                              [
-                  new Date(1399809600*1000),
-                  19,
-                  19,
-                  ' Dim. 11 mai -  Dim. 18 mai\u000D\u000A19 auditeurs'
-                ]
-                ,                              [
-                  new Date(1399204800*1000),
-                  25,
-                  25,
-                  ' Dim. 4 mai -  Dim. 11 mai\u000D\u000A25 auditeurs'
-                ]
-                ,                              [
-                  new Date(1398600000*1000),
-                  31,
-                  31,
-                  ' Dim. 27 avr. -  Dim. 4 mai\u000D\u000A31 auditeurs'
-                ]
-                ,                              [
-                  new Date(1397995200*1000),
-                  25,
-                  25,
-                  ' Dim. 20 avr. -  Dim. 27 avr.\u000D\u000A25 auditeurs'
-                ]
-                ,                              [
-                  new Date(1397390400*1000),
-                  29,
-                  29,
-                  ' Dim. 13 avr. -  Dim. 20 avr.\u000D\u000A29 auditeurs'
-                ]
-                ,                              [
-                  new Date(1396785600*1000),
-                  25,
-                  25,
-                  ' Dim. 6 avr. -  Dim. 13 avr.\u000D\u000A25 auditeurs'
-                ]
-                ,                              [
-                  new Date(1396180800*1000),
-                  26,
-                  26,
-                  ' Dim. 30 mars -  Dim. 6 avr.\u000D\u000A26 auditeurs'
-                ]
-                ,                              [
-                  new Date(1395576000*1000),
-                  38,
-                  38,
-                  ' Dim. 23 mars -  Dim. 30 mars\u000D\u000A38 auditeurs'
-                ]
-                ,                              [
-                  new Date(1394971200*1000),
-                  31,
-                  31,
-                  ' Dim. 16 mars -  Dim. 23 mars\u000D\u000A31 auditeurs'
-                ]
-                ,                              [
-                  new Date(1394366400*1000),
-                  28,
-                  28,
-                  ' Dim. 9 mars -  Dim. 16 mars\u000D\u000A28 auditeurs'
-                ]
-                ,                              [
-                  new Date(1393761600*1000),
-                  24,
-                  24,
-                  ' Dim. 2 mars -  Dim. 9 mars\u000D\u000A24 auditeurs'
-                ]
-                ,                              [
-                  new Date(1393156800*1000),
-                  32,
-                  32,
-                  ' Dim. 23  fév. -  Dim. 2 mars\u000D\u000A32 auditeurs'
-                ]
-                ,                              [
-                  new Date(1392552000*1000),
-                  27,
-                  27,
-                  ' Dim. 16  fév. -  Dim. 23  fév.\u000D\u000A27 auditeurs'
-                ]
-                ,                              [
-                  new Date(1391947200*1000),
-                  22,
-                  22,
-                  ' Dim. 9  fév. -  Dim. 16  fév.\u000D\u000A22 auditeurs'
-                ]
-                ,                              [
-                  new Date(1391342400*1000),
-                  30,
-                  30,
-                  ' Dim. 2  fév. -  Dim. 9  fév.\u000D\u000A30 auditeurs'
-                ]
-                ,                              [
-                  new Date(1390737600*1000),
-                  29,
-                  29,
-                  ' Dim. 26  jan. -  Dim. 2  fév.\u000D\u000A29 auditeurs'
-                ]
-                ,                              [
-                  new Date(1390132800*1000),
-                  37,
-                  37,
-                  ' Dim. 19  jan. -  Dim. 26  jan.\u000D\u000A37 auditeurs'
-                ]
-                                          ];
-        })();
-</script>
-
-    </div>            </section>
-
-            <section class="r">
-                <h2 class="rm">Explorer plus en détails</h2>
-                <aside class="g4"><a href="/music/Various+Artists"     class="split more-of more-of--dark more-of--artist">    <div class="split-left more-of-body">
-        <h3 title="Various Artists">Plus Various Artists</h3>
-        <p>Chansons, vidéos, images et plus encore</p>
-        <div class="more-of-arrow"></div>
-    </div>
-    <img class="split-right more-of-img" src="http://userserve-ak.last.fm/serve/126s/46209667.png" alt="Photo de Various Artists" />
-</a></aside>
-                <aside class="g4"></aside>
-            </section>
-
-        </div>
-        <div class="g4">
-            <h2 class="rm">Écouter, acheter ou partager</h2>
-
-<div class="
-    user-actions
-    with-station-button"
-data-require="music/actionarea">
-    
-            <div class="user-actions-btn-wrap user-actions-btn-wrap--add">
-            <button
-                class="
-                    btn
-                                            btn--icon-only
-                                        btn--primary
-                    iconleft
-                    iconleft--add                    
-                    js-add
-                " 
-                title="Ajouter à la bibliothèque"
-                >
-                Ajouter à la bibliothèque
-            </button>
-        </div>
-    
-            <div class="user-actions-btn-wrap user-actions--play">
-            <span class="stationbutton btn btn--primary iconright iconright--question stationbutton--unavailable"                            title="Nous n'en savons pas encore assez sur cet artiste"
-                    >
-            Station non disponible
-        </span>
-        </div>
-    
-</div>
-
-
-    
-    <section class="ecommerce-actions">
-        <h3 class="rm">Acheter </h3>
-        <div
-        class="
-            dropdown-btn-wrapper
-            ecommerce-dropdown
-            ecommerce-dropdown--primary
-                            has-no-preferred-retailer
-                    "
-        data-dropdownmenu-analytics-action="BuyShowOptions"
-        data-dropdownmenu-analytics-label="Album|DirectDownload"
-        data-require="dropdownmenu"
-    >
-        
-                
-            <a
-                href="http://www.lastfm.fr/affiliate/byid/8/2857031/13/album-overview-top-dropdown"
-                target="_blank"
-                class="
-                    ecommerce-btn-text
-                    btn
-                    dropdown-btn
-                                        iconleft
-                    iconleft--ecommerce
-                    menu-toggle
-                    iconright
-                    iconright--dropdown
-                "
-                rel="nofollow"
-                            >
-                
-    
-                                    À partir de €5.00
-                    
-    
-            </a>
-        
-                <ul class="dropdown-btn-menu  hidden-menu">
-
-                        
-                                                <li class="dropdown-btn-section-title">
-                                                    Téléchargement numérique
-                                            </li>
-                
-                                    <li>
-                        <a
-                            data-analytics-action="Buy|Direct"
-                            data-analytics-label="Album|7digital"
-                            href="http://www.lastfm.fr/affiliate/byid/8/2857031/13/album-overview-top-dropdown"
-                            rel="nofollow"
-                            class="dropdown-btn-menu-item media remove-bottom-margin"
-                                                            target="_blank"
-                                                    >
-
-                                                            <span class="media-body">
-                                                                            <img class="ecommerce-icon" src="http://cdn.last.fm/favicons/7digital.gif" alt="7digital">
-                                    
-                                                                            7digital
-                                                                    </span>
-
-                                                                    <span class="media-pull-right remove-left-margin">
-                                                                                    €5.00
-                                                                            </span>
-                                                                                    </a>
-                    </li>
-                                    <li>
-                        <a
-                            data-analytics-action="Buy|Direct"
-                            data-analytics-label="Album|Amazon MP3"
-                            href="http://www.lastfm.fr/affiliate/byid/8/2857031/44/album-overview-top-dropdown"
-                            rel="nofollow"
-                            class="dropdown-btn-menu-item media remove-bottom-margin"
-                                                            target="_blank"
-                                                    >
-
-                                                            <span class="media-body">
-                                                                            <img class="ecommerce-icon" src="http://cdn.last.fm/favicons/amazon-mp3-16x16-a.gif" alt="Amazon MP3">
-                                    
-                                                                            Amazon MP3
-                                                                    </span>
-
-                                                                    <span class="media-pull-right remove-left-margin">
-                                                                                    €10.99
-                                                                            </span>
-                                                                                    </a>
-                    </li>
-                                    <li>
-                        <a
-                            data-analytics-action="Buy|Search"
-                            data-analytics-label="Album|iTunes"
-                            href="http://www.lastfm.fr/affiliate/byid/8/2857031/24/album-overview-top-dropdown"
-                            rel="nofollow"
-                            class="dropdown-btn-menu-item media remove-bottom-margin"
-                                                            target="_blank"
-                                                    >
-
-                                                            <span class="media-body">
-                                                                            <img class="ecommerce-icon" src="http://cdn.last.fm/favicons/itunesbadge.gif" alt="iTunes">
-                                    
-                                                                            iTunes
-                                                                    </span>
-
-                                                                                                            <span class="media-pull-right remove-left-margin">Rechercher</span>
-                                                                                                                        </a>
-                    </li>
-                                                                <li class="dropdown-btn-section-title">
-                                                    Support physique
-                                            </li>
-                
-                                    <li>
-                        <a
-                            data-analytics-action="Buy|Search"
-                            data-analytics-label="Album|Amazon"
-                            href="http://www.lastfm.fr/affiliate/byid/8/2857031/1/album-overview-top-dropdown"
-                            rel="nofollow"
-                            class="dropdown-btn-menu-item media remove-bottom-margin"
-                                                            target="_blank"
-                                                    >
-
-                                                            <span class="media-body">
-                                                                            <img class="ecommerce-icon" src="http://cdn.last.fm/favicons/1/amazon.gif" alt="Amazon">
-                                    
-                                                                            Amazon
-                                                                    </span>
-
-                                                                                                            <span class="media-pull-right remove-left-margin">Rechercher</span>
-                                                                                                                        </a>
-                    </li>
-                                    <li>
-                        <a
-                            data-analytics-action="Buy|Search"
-                            data-analytics-label="Album|eBay"
-                            href="http://www.lastfm.fr/affiliate/byid/8/2857031/90/album-overview-top-dropdown"
-                            rel="nofollow"
-                            class="dropdown-btn-menu-item media remove-bottom-margin"
-                                                            target="_blank"
-                                                    >
-
-                                                            <span class="media-body">
-                                                                            <img class="ecommerce-icon" src="http://cdn.last.fm/favicons/ebay.gif" alt="eBay">
-                                    
-                                                                            eBay
-                                                                    </span>
-
-                                                                                                            <span class="media-pull-right remove-left-margin">Rechercher</span>
-                                                                                                                        </a>
-                    </li>
-                                    </ul>
-    </div>    </section>
-
-    <section class="share-wrapper">
-        <h3 class="rm">Partager</h3>
-        <div data-require="dropdownmenu" data-dropdownmenu-analytics-action="ShareShowOptions"  class="dropdown-btn-wrapper needs-js">
-    <a href="#share" class="btn iconleft iconleft--share dropdown-btn menu-toggle iconright iconright--dropdown">
-        Partager
-        <div class="social-icons-wrapper">
-            <span class="social-btn social-btn--facebook"></span>
-            <span class="social-btn social-btn--twitter"></span>
-            <span class="social-btn social-btn--google"></span>
-        </div>
-    </a>
-    <ul class="hidden-menu dropdown-btn-menu">
-        <li>
-            <a 
- class="dropdown-btn-menu-item social-btn social-btn--facebook"href="https://www.facebook.com/dialog/feed?app_id=192959324047861&amp;link=http%3A%2F%2Fwww.lastfm.fr%2Fmusic%2FVarious%2BArtists%2FMonsieur%2BGainsbourg%2BRevisited&amp;ref=facebooklink&amp;redirect_uri=http%3A%2F%2Fwww.last.fm%2Fredirect%2Fbnc%3Fbackto%3Dhttp%253A%252F%252Fwww.lastfm.fr%252Fmusic%252FVarious%252BArtists%252FMonsieur%252BGainsbourg%252BRevisited%26bnc_sig%3D74ebd557f9f42af40e43ad81f2fd167f"
-data-require="newwindow"
-data-analytics-redirect="false"
-data-analytics-social-network="facebook"
-data-analytics-social-action="post"
-data-analytics-social-restype="Album"
-data-width="580"
-data-height="400"
-target="_blank"
-data-window-url="https://www.facebook.com/dialog/feed?app_id=192959324047861&amp;link=http%3A%2F%2Fwww.lastfm.fr%2Fmusic%2FVarious%2BArtists%2FMonsieur%2BGainsbourg%2BRevisited&amp;ref=facebooklink&amp;redirect_uri=http://www.last.fm/facebook/share_popup_close&amp;display=popup">
-    Facebook</a>        </li>
-        <li>
-            <a
- class="dropdown-btn-menu-item social-btn social-btn--twitter"href="https://twitter.com/intent/tweet?url=http%3A%2F%2Fwww.lastfm.fr%2Fmusic%2FVarious%2BArtists%2FMonsieur%2BGainsbourg%2BRevisited&amp;text=Allez%20voir%20Various%20Artists%20%E2%80%93%20Monsieur%20Gainsbourg%20Revisited&amp;via=lastfm&amp;lang=fr"
-data-require="newwindow"
-data-analytics-redirect="false"
-data-analytics-social-network="twitter"
-data-analytics-social-action="tweet"
-data-analytics-social-restype="Album"
-data-width="580"
-data-height="253"
-target="_blank"
->
-    Twitter</a>        </li>
-        <li>
-            <a
- class="dropdown-btn-menu-item social-btn social-btn--google"href="https://plus.google.com/share?url=http%3A%2F%2Fwww.lastfm.fr%2Fmusic%2FVarious%2BArtists%2FMonsieur%2BGainsbourg%2BRevisited&gpsrc=frameless"
-data-require="newwindow"
-data-analytics-redirect="false"
-data-analytics-social-network="google"
-data-analytics-social-action="post"
-data-analytics-social-restype="Album"
-data-width="580"
-data-height="400"
-target="_blank"
->
-    Google+</a>        </li>
-                <li>
-            <a 
-    href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited" 
-    data-require="sendbutton" 
-         class="dropdown-btn-menu-item social-btn social-btn--email">
-    Email</a>            
-        </li>
-    </ul>
-</div>    </section>            <div class="media media--overflow-visible music-resource-stats" data-require="music/artiststatsarea">
-        <meta itemprop="interactionCount" content="UserPlays:428467" />
-                <ul class="media-body">
-                    <li class="scrobbles">
-                <b data-count="428467">428&nbsp;467</b>
-                <div class="lite">scrobbles</div>
-            </li>
-                    <li class="listeners">
-                <b id="listenerCount" data-count="152502">152&nbsp;502</b>                 <div class="lite">auditeurs</div>
-            </li>
-        </ul>
-
-                
-                                <section class="memo listener-details listener-details--listening-now remove-bottom-margin ">
-                <ul>
-                                                                                                    <li
-                                class="media remove-bottom-margin listener-details-user" 
-                                                            >
-                                
-                                <a href="/user/jmgordon"     class="media-pull-left media-link-hook user-image-link" title="Janet, Femme, Royaume-Uni">                                    <span class="userImage"><img class="user-image rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/42567863.jpg" /></span>                                                                            <div class="scrobblesource"><img class="icon scrobbling_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />En train de scrobbler depuis <img capture="clienticon" class="icon ss-lfm_icon ss_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span class="source"><a href="/download#content_desktop">Le Scrobbler Last.fm</a></span></div>
-                                                                    </a>                                <span class="media-body">
-                                                                                                                         <a href="/user/jmgordon"     class="media-link-reference" title="Janet, Femme, Royaume-Uni">jmgordon</a> écoute
-                                           <em>
-                                                                                                    <a href="/music/The+Kills">The Kills</a> – <a href="/music/The+Kills/_/I+Call+It+Art+(La+Chanson+De+Slogan)"    >I Call It Art (La Chanson De Slogan)</a>                                                                                            </em>
-                                        
-                                                                    </span>
-                            </li>
-                                                                                                                            <li
-                                class="media remove-bottom-margin listener-details-user" 
-                                style="display:none;"                            >
-                                
-                                <a href="/user/luCiPHer"     class="media-pull-left media-link-hook user-image-link" title="Marius Braasch, 31, Homme, Allemagne">                                    <span class="userImage"><img class="user-image rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/70626730.png" /></span>                                                                            <div class="scrobblesource"><img class="icon scrobbling_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />En train de scrobbler depuis <img capture="clienticon" class="icon ss-wa2_icon ss_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span class="source"><a href="/download?for=winamp">Winamp</a></span></div>
-                                                                    </a>                                <span class="media-body">
-                                                                                                                         <a href="/user/luCiPHer"     class="media-link-reference" title="Marius Braasch, 31, Homme, Allemagne">luCiPHer</a> écoute
-                                           <em>
-                                                                                                    <a href="/music/Jarvis+Cocker+&+Kid+Loco">Jarvis Cocker &amp; Kid Loco</a> – <a href="/music/Jarvis+Cocker+&+Kid+Loco/_/I+Just+Came+To+Tell+You+That+I%27M+Going+(Je+Suis+Venu+te+Dire+Que+Je+M%27En+Vais)"    >I Just Came To Tell You That I'M Going (Je Suis Venu te Dire Que Je M'En Vais)</a>                                                                                            </em>
-                                        
-                                                                    </span>
-                            </li>
-                                                                                                                            <li
-                                class="media remove-bottom-margin listener-details-user" 
-                                style="display:none;"                            >
-                                
-                                <a href="/user/JulezDi7"     class="media-pull-left media-link-hook user-image-link" title="Julez Di, 23, Mexique">                                    <span class="userImage"><img class="user-image rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/70015396.jpg" /></span>                                                                            <div class="scrobblesource"><img class="icon scrobbling_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />En train de scrobbler depuis <img capture="clienticon" class="icon ss-lfm_icon ss_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span class="source"><a href="/download#content_desktop">Le Scrobbler Last.fm</a></span></div>
-                                                                    </a>                                <span class="media-body">
-                                                                                                                         <a href="/user/JulezDi7"     class="media-link-reference" title="Julez Di, 23, Mexique">JulezDi7</a> écoute
-                                           <em>
-                                                                                                    <a href="/music/Placebo">Placebo</a> – <a href="/music/Placebo/_/The+Ballad+Of+Melody+Nelson+(Ballade+De+Melody+Nelson)"    >The Ballad Of Melody Nelson (Ballade De Melody Nelson)</a>                                                                                            </em>
-                                        
-                                                                    </span>
-                            </li>
-                                                                                                                            <li
-                                class="media remove-bottom-margin listener-details-user" 
-                                style="display:none;"                            >
-                                
-                                <a href="/user/noltras"     class="media-pull-left media-link-hook user-image-link" title="Olivier, 32, Homme, France">                                    <span class="userImage"><img class="user-image rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/34225663.jpg" /></span>                                                                            <div class="scrobblesource"><img class="icon scrobbling_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />En train de scrobbler depuis <img capture="clienticon" class="icon ss-itunes_icon ss_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span class="source"><a href="/download">iTunes</a></span></div>
-                                                                    </a>                                <span class="media-body">
-                                                                                                                         <a href="/user/noltras"     class="media-link-reference" title="Olivier, 32, Homme, France">noltras</a> écoute
-                                           <em>
-                                                                                                    <a href="/music/Cat+Power+&+Karen+Elson">Cat Power &amp; Karen Elson</a> – <a href="/music/Cat+Power+&+Karen+Elson/_/I+love+you+(Me+either)+(Je+t%27aime+mon+non+plus)"    >I love you (Me either) (Je t'aime mon non plus)</a>                                                                                            </em>
-                                        
-                                                                    </span>
-                            </li>
-                                                                                                                            <li
-                                class="media remove-bottom-margin listener-details-user" 
-                                style="display:none;"                            >
-                                
-                                <a href="/user/hadriel_sm"     class="media-pull-left media-link-hook user-image-link" title="Hadriel, 23, Homme, Brésil">                                    <span class="userImage"><img class="user-image rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/58697639.gif" /></span>                                                                            <div class="scrobblesource"><img class="icon scrobbling_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />En train de scrobbler depuis <img capture="clienticon" class="icon ss-wmp_icon ss_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span class="source"><a href="/download?for=wmp">Windows Media Player</a></span></div>
-                                                                    </a>                                <span class="media-body">
-                                                                                                                         <a href="/user/hadriel_sm"     class="media-link-reference" title="Hadriel, 23, Homme, Brésil">hadriel_sm</a> écoute
-                                           <em>
-                                                                                                    <a href="/music/James+Iha+&+Kazu+Makino">James Iha &amp; Kazu Makino</a> – <a href="/music/James+Iha+&+Kazu+Makino/_/The+ballad+of+Bonnie+and+Clyde+(Bonnie+&+Clyde)"    >The ballad of Bonnie and Clyde (Bonnie &amp; Clyde)</a>                                                                                            </em>
-                                        
-                                                                    </span>
-                            </li>
-                                                                                                                                                                                                                                                                                        </ul>
-            </section>
-        
-
-    </div>            <div id="LastAd_mpu" class="LastAd ad-mpu inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="mpu" data-ad-collapsible>
-    <span>     
-            <div id="mpu_top">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("mpu_top"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-                        
-            
-            <aside>
-        <a
-            class="promo-unit promo-unit--twitter add-vertical-margins"
-            data-analytics-action="PromoUnitClick"
-            data-analytics-label="TwitterPromoUnit"
-            href="http://twitter.com/lastfm"
-        >
-            <h2>Suivez nous sur Twitter</h2>
-
-<div class="media">
-    <img src="http://cdn.last.fm/flatness/promo/promounits/twitter.png" alt="@lastfm" class="media-pull-left">
-    <div class="media-body">
-        Recevez les dernières mises à jour et annonces de <b>@lastfm</b>
-        <br>
-        <span class="promo-unit-fake-link">Suivez-nous</span>
-    </div>
-</div>        </a>
-    </aside>        </div>
-    </div>
-
-    <div id="LastAd_relatedcontent" class="LastAd ad-relatedcontent inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="relatedcontent" data-ad-collapsible>
-    <span>     
-                    
-    </span>
-</div>
-    <div id="LastAd_middleleaderboard" class="LastAd ad-middleleaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="middleleaderboard" data-ad-collapsible>
-    <span>     
-            <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
-<ins class="adsbygoogle" data-ad-slot="7065828163" data-ad-client="ca-pub-1991679624331369" data-ad-format="auto">
-</ins>
-<script>
-
-    (adsbygoogle = window.adsbygoogle || []).push({});
-
-</script>        
-    </span>
-</div>
-    <div class="catalogue-social r r--full-bleed">
-        <section class="g8 album-shouts">
-            <a name="shoutbox"></a>
-            <div class="widget widget-lazy/shoutbox"
-    data-url="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+shoutbox"
-    data-template="shoutbox"
-    data-require="lazy/shoutbox"
-        ><h2 class="heading">
-    <span class="h2Wrapper">
-        <a href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+shoutbox">Shoutbox</a>
-    </span>
-</h2>
-<div class="shoutboxContainer album-shoutbox">
-        <div class="memo">
-            <strong>Ajouter un commentaire.</strong>
-            <a href="/login/">Ouvrir une session Last.fm</a> ou <a href="/join/">S'inscrire</a>.
-        </div>
-        <ul class="shouts">
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/Tron1276">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/97408503.jpg" class="avatar " width="64" />
-
-    </span>
-    Tron1276
-</a>
-
-
-                    </h3>
-                <p>
-                        Portishead's amazing &quot;reinterpretation&quot;-of-sorts is the only thing on here worth having simply by doing the man justice (...and then some) in a new &amp; exciting way.
-                                    </p>
-                <div class="meta">
-                    <span class="date">7  f&eacute;v. 4h37m</span>
-                        <a class="shoutbox-reply" href="/user/Tron1276#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/harusari">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/30427273.jpg" class="avatar " width="64" />
-
-    </span>
-    harusari
-</a>
-
-
-                    </h3>
-                <p>
-                        Ugh, I can't believe CBruni has got more hits than Marc Almond or Gonzales, especially Boy Toy :/ Love The Kills cover too &lt;3
-                                    </p>
-                <div class="meta">
-                    <span class="date">26 jui. 2011</span>
-                        <a class="shoutbox-reply" href="/user/harusari#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/ArcticMonkeyyy">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/59543713.jpg" class="avatar " width="64" />
-
-    </span>
-    ArcticMonkeyyy
-</a>
-
-
-                    </h3>
-                <p>
-                        Nice, really nice.
-                                    </p>
-                <div class="meta">
-                    <span class="date">2 mars 2011</span>
-                        <a class="shoutbox-reply" href="/user/ArcticMonkeyyy#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/analurowe">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/87935271.gif" class="avatar " width="64" />
-
-    </span>
-    analurowe
-</a>
-
-
-                    </h3>
-                <p>
-                        so amazing! 
-                                    </p>
-                <div class="meta">
-                    <span class="date">15 sept. 2009</span>
-                        <a class="shoutbox-reply" href="/user/analurowe#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/antoprince">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/30759457.jpg" class="avatar " width="64" />
-
-    </span>
-    antoprince
-</a>
-
-
-                    </h3>
-                <p>
-                        top notch album!
-                                    </p>
-                <div class="meta">
-                    <span class="date">13 avr. 2009</span>
-                        <a class="shoutbox-reply" href="/user/antoprince#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/alvareo">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/70577440.png" class="avatar " width="64" />
-
-    </span>
-    alvareo
-</a>
-
-
-                    </h3>
-                <p>
-                        Just Trip-hop fan down there.
-                                    </p>
-                <div class="meta">
-                    <span class="date">4 avr. 2009</span>
-                        <a class="shoutbox-reply" href="/user/alvareo#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/Juanchofsa">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/98353475.jpg" class="avatar " width="64" />
-
-    </span>
-    Juanchofsa
-</a>
-
-
-                    </h3>
-                <p>
-                        portishead and tricky save the album
-the rest is horsecrap
-                                    </p>
-                <div class="meta">
-                    <span class="date">19 ao&ucirc;t 2008</span>
-                        <a class="shoutbox-reply" href="/user/Juanchofsa#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/YouCantHide">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/32081495.jpg" class="avatar " width="64" />
-
-    </span>
-    YouCantHide
-</a>
-
-
-                    </h3>
-                <p>
-                        Impressive
-                                    </p>
-                <div class="meta">
-                    <span class="date">22 mai 2008</span>
-                        <a class="shoutbox-reply" href="/user/YouCantHide#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/espadril">
-    <span class="userImage">
-    <img src="http://cdn.last.fm/flatness/responsive/2/noimage/default_user_60_g1.png" class="avatar " width="64" />
-
-    </span>
-    espadril
-</a>
-
-
-                    </h3>
-                <p>
-                        album kapagındaki gainsbourg sener sen'e benziyor sanki...
-                                    </p>
-                <div class="meta">
-                    <span class="date">30 sept. 2006</span>
-                        <a class="shoutbox-reply" href="/user/espadril#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            <li class="clearit message">
-                    <h3 class="author ">
-                        <a href="/user/raliogab">
-    <span class="userImage">
-    <img src="http://userserve-ak.last.fm/serve/64/88433523.png" class="avatar " width="64" />
-
-    </span>
-    raliogab
-</a>
-
-
-                    </h3>
-                <p>
-                        very good album, yesh yesh
-                                    </p>
-                <div class="meta">
-                    <span class="date">29 ao&ucirc;t 2006</span>
-                        <a class="shoutbox-reply" href="/user/raliogab#shoutbox">Répondre</a>
-                                    </div>
-            </li>
-            </ul>
-</div>
-</div>
-        </section>
-        <div class="g4">
-                                        
-
-<section>
- <h2><a href="/music/Various+Artists/Monsieur+Gainsbourg+Revisited/+listeners" >Top Auditeurs</a></h2>
- <ul>
- <li class="first media media--overflow-visible user">
- <a href="/user/Bezonders" class="media-pull-left media-link-hook" title="31, Homme, Ukraine"><span class="userImage"><img class=" rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/5146354.jpg" /></span></a> <div class="media-body">
- <h3 class="remove-bottom-margin"><a href="/user/Bezonders" class="media-link-reference" title="31, Homme, Ukraine">Bezonders</a></h3>
- Top auditeur
- </div>
- 
- </li><li class="media media--overflow-visible user">
- <a href="/user/beskrilaya" class="media-pull-left media-link-hook" title="Femme"><span class="userImage"><img class=" rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/86451879.jpg" /></span></a> <div class="media-body">
- <h3 class="remove-bottom-margin"><a href="/user/beskrilaya" class="media-link-reference" title="Femme">beskrilaya</a></h3>
- Top auditeur
- </div>
- 
- </li><li class="media media--overflow-visible user">
- <a href="/user/donbuz" class="media-pull-left media-link-hook" title="Homme, Canada"><span class="userImage"><img class=" rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/48895369.jpg" /></span></a> <div class="media-body">
- <h3 class="remove-bottom-margin"><a href="/user/donbuz" class="media-link-reference" title="Homme, Canada">donbuz</a></h3>
- Top auditeur
- </div>
- 
- </li><li class="last media media--overflow-visible user">
- <a href="/user/hadriel_sm" class="media-pull-left media-link-hook" title="Hadriel, 23, Homme, Brésil"><span class="userImage"><img class=" rounded" height="64" width="64" alt="" src="http://userserve-ak.last.fm/serve/64s/58697639.gif" /></span></a> <div class="media-body">
- <h3 class="remove-bottom-margin"><a href="/user/hadriel_sm" class="media-link-reference" title="Hadriel, 23, Homme, Brésil">hadriel_sm</a></h3>
- Top auditeur
- </div>
- 
- </li>
-</ul></section>
-
-                                </div>
-    </div>
-</article>
-
-
-<div id="LastAd_lowerleaderboard" class="LastAd ad-lowerleaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="lowerleaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_bottom">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_bottom"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-
-                            <footer role="banner" class="site-footer">
-    <nav class="site-footer-nav">
-        <div class="r add-bottom-margin">
-            <a href="/uploadmusic" class="g call-to-action call-to-action--upload" data-analytics-action="FooterClick" data-analytics-label="Artists and Labels">
-                <h2>Artistes et labels</h2>
-                <p>Entrez en contact avec vos fans en téléchargeant votre musique sur Music Manager</p>
-            </a>
-            <a href="/download" class="g call-to-action call-to-action--download" data-analytics-action="FooterClick" data-analytics-label="Download Desktop App">
-                <h2>Télécharger nos apps</h2>
-                <p>Profitez des apps Last.fm pour bureau et portable, et commencez à scrobbler</p>
-            </a>
-        </div>
-        <hr class="separator" />
-        <ul class="r add-bottom-margin">
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Société</h2>
-                <a href="#show-company" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Société</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/about" data-analytics-action="FooterClick" data-analytics-label="About us">Qui sommes-nous ? </a></li>
-                    <li><a href="/about/contact" data-analytics-action="FooterClick" data-analytics-label="Contact us">Nous contacter</a></li>
-                    <li><a href="/about/jobs" data-analytics-action="FooterClick" data-analytics-label="Jobs">Offres d'emploi</a></li>
-                    <li><a href="http://blog.last.fm" data-analytics-action="FooterClick" data-analytics-label="Blog">Blog</a></li>
-                    <li><a href="/advertise" data-analytics-action="FooterClick" data-analytics-label="Advertise">Publicité</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Communauté</h2>
-                <a href="#show-join" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Communauté</h2>
-                </a>
-                <ul class="toggle-target">
-                                        <li><a href="/join" data-analytics-action="FooterClick" data-analytics-label="Sign up">S'inscrire</a></li>
-                    <li><a href="/community/users" data-analytics-action="FooterClick" data-analytics-label="Find people">Trouver des utilisateurs</a></li>
-                                        <li><a href="/community/groups" data-analytics-action="FooterClick" data-analytics-label="Find groups">Trouver des groupes</a></li>
-                    <li><a href="/community" data-analytics-action="FooterClick" data-analytics-label="Community">Communauté</a></li>
-                    <li><a href="/forum" data-analytics-action="FooterClick" data-analytics-label="Forums">Forums</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Cadeaux</h2>
-                <a href="#show-goodies" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Cadeaux</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/hardware" data-analytics-action="FooterClick" data-analytics-label="More apps">Plus d'apps et d'appareils</a></li>
-                    <li><a href="/api" data-analytics-action="FooterClick" data-analytics-label="Last.fm API">API développeur </a></li>
-                    <li><a href="http://build.last.fm" data-analytics-action="FooterClick" data-analytics-label="Tools, plugins & more">Outils et plug-ins</a></li>
-                    <li><a href="http://playground.last.fm" data-analytics-action="FooterClick" data-analytics-label="Playground">Playground</a></li>
-                    <li><a href="/music/+free-music-downloads" data-analytics-action="FooterClick" data-analytics-label="Free music downloads">Téléchargements de musique gratuits</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Aide</h2>
-                <a href="#show-help" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Aide</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/help" data-analytics-action="FooterClick" data-analytics-label="Help & support">Aide et assistance</a></li>
-                    <li><a href="http://status.last.fm/" data-analytics-action="FooterClick" data-analytics-label="System status">État du système</a></li>
-                                    </ul>
-            </li>
-        </ul>
-    </nav>
-    <hr class="separator" />
-                <nav role="navigation" class="language-selector clearit toggle-container" id="change-language" data-require="toggle">
-        <h2 class="rm">Langues :</h2>
-        <ul class="inline-items inline-items--dotted">
-            <li class="current-language">
-                <strong class="current-language-text iconleft iconleft--globe">
-                    Français
-                    <span class="rm">(langue actuelle)</span>
-                </strong>
-                <a href="#show-languages" class="iconleft iconleft--globe iconright iconright--dropdown language-toggle js-toggle">
-                    <strong>Français</strong><span class="rm">(langue actuelle) - Changer de langue</span>
-                </a>
-            </li>
-            <li class="language-options toggle-target">
-                <ul class="language-options-group">
-                                            <li class="language-option">
-                            <a
-                                href="http://www.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=en"
-                                rel="alternate"
-                                hreflang="en"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > en"
-                            >English</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.de/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=de"
-                                rel="alternate"
-                                hreflang="de"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > de"
-                            >Deutsch</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.es/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=es"
-                                rel="alternate"
-                                hreflang="es"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > es"
-                            >Español</a>
-                        </li>
-                                                                                                                            <li class="language-option">
-                            <a
-                                href="http://www.lastfm.it/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=it"
-                                rel="alternate"
-                                hreflang="it"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > it"
-                            >Italiano</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.jp/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=jp"
-                                rel="alternate"
-                                hreflang="ja"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > jp"
-                            >日本語</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.pl/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=pl"
-                                rel="alternate"
-                                hreflang="pl"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pl"
-                            >Polski</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.br/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=pt"
-                                rel="alternate"
-                                hreflang="pt"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pt"
-                            >Português</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.ru/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=ru"
-                                rel="alternate"
-                                hreflang="ru"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > ru"
-                            >Руccкий</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.se/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=sv"
-                                rel="alternate"
-                                hreflang="sv"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > sv"
-                            >Svenska</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.tr/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=tr"
-                                rel="alternate"
-                                hreflang="tr"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > tr"
-                            >Türkçe</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://cn.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited?setlang=zh"
-                                rel="alternate"
-                                hreflang="zh"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > zh"
-                            >简体中文</a>
-                        </li>
-                                                        </ul>
-            </li>
-        </ul>
-        <hr class="separator" />
-    </nav>
-
-     
-<div class="site-footer-legalese">
-    <blockquote class="site-footer-strapline">“Bet You Can't Eat Last.fm.”</blockquote>
-    <ul class="inline-items inline-items--dotted">
-        <li>
-            <a href="http://www.cbsinteractive.com">CBS Interactive</a> &copy; 2014 Last.fm Ltd.         </li>
-        <li>
-            <a href="/legal/terms" data-analytics-action="FooterClick" data-analytics-label="Terms of Use">Conditions d'utilisation</a>, 
-                    <a href="/legal/privacy" data-analytics-action="FooterClick" data-analytics-label="Privacy Policy">Politique de confidentialité</a> et 
-         <a href="/legal" data-analytics-action="FooterClick" data-analytics-label="Legal">Politiques juridiques</a> — <span class="date">Dernière mise à jour : 26 nov. 2013</span>
-        </li>
-        <li>
-            <a href="http://www.gamespot.com">Gamespot</a>
-        </li>
-    </ul>
-                <p class="wiki-legalese">
-            Certains textes d'utilisateurs sur cette page sont disponibles sous <a href="http://creativecommons.org/licenses/by-sa/3.0/legalcode">licence Attribution Pas d'Utilisation Commerciale Partage à l'Identique de Creative Commons</a>.
-Certains textes peuvent également être disponibles sous <a href="/help/gfdl">licence de documentation libre GNU</a>.
-        </p>
-    </div></footer>                    </div>
-    
-    <div id="multiButtonMenu" style="display: none;">
-    <div>
-        <ul class="lfmDropDownBody">
-            <li class="mAddToLibrary"><a href="#">Ajouter à ma bibliothèque</a></li>
-            <li class="mAddToFriends"><a href="#">Ajouter à la liste d'amis</a></li>
-            
-            <!-- <li class="save"><a href="#">Ajouter aux favoris</a></li> -->
-            <li class="mSend"><a href="#">Partager</a></li>
-            
-            <li class="mLove"><a href="#">Ajouter à mes coups de cœur</a></li>
-            <li class="mUnlove"><a href="#">Retirer des coups de cœur</a></li>
-            <li class="mBan"><a href="#">Bannir ce titre</a></li>
-            <li class="mUnban"><a href="#">Annuler le bannissement de ce titre</a></li>
-
-            <li class="mAddTags"><a href="#">Ajouter des tags</a></li>
-            <li class="mAddToPlaylist"><a href="#">Ajouter à la playlist</a></li>
-            
-            <li class="mRemoveFromLibrary"><a href="#">Supprimer de la bibliothèque</a></li>
-            
-            <li class="mBuy"><a href="#">Acheter la chanson</a></li>
-                        <li class="mMessage"><a href="#">Envoyer un message</a></li>
-                        <li class="mEditDetails"><a href="#">Modifier les infos</a></li>
-            <li class="mMessageAll"><a href="#">Écrire un message à tous les utilisateurs</a></li>
-            <li class="mEditPermissions"><a href="#">Modifier les autorisations</a></li>
-            <li class="mAbdicate"><a href="#">Céder ma place</a></li>
-            <li class="mLeave"><a href="#">Quitter ce groupe</a></li>
-            
-            <li class="mLoading"><a href="#">&nbsp;</a></li>
-        </ul>
-    </div>
-</div>
-
-
-
-<div style="display: none">
-    <script src="//dw.cbsimg.net/js/cbsi/ds.js"></script>
-    <script>
-        if (typeof DW === "object") {
-            DW.pageParams = {
-                siteid: '190',
-                ptid: '6693'
-            };
-            DW.tagNielsen = false;
-            DW.clear();
-        }
-    </script>
-    <noscript>
-        <img src="//dw.cbsimg.net/clear/c.gif?ts=1406205610&amp;sid=190;" />
-    </noscript>
-</div>
-<div id="LastAd_tracking" class="LastAd ad-tracking inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="tracking" data-ad-collapsible>
-    <span>     
-            <iframe name="__bkframe" height="0" width="0" frameborder="0" src="javascript:void(0)"></iframe>
-<script type="text/javascript" src="//tags.bkrtx.com/js/bk-coretag.js"></script>
-<script type="text/javascript">
-            bk_addPageCtx("ar", "variousartists,variousartists");
-            bk_addPageCtx("tag", "totecradio,french,cover,covers,iveldiealbums,luvassavaihtelevaa,variousartistsareapitaonlastfm,gainsbourgcover,elektrischerindierock,mixit");
-            bk_addPageCtx("path", "row-lastfm/music/album/overview");
-            bk_addPageCtx("site", "ccbsilastfmsite");
-            bk_addPageCtx("ptype", "album_door");
-        bk_ignore_meta = true;
-    bk_doJSTag(16515, 4);
-</script>        
-    </span>
-</div>
-
-
-<script data-require="omniture">
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    var omdata = {
-        context: {
-                                    siteSection: "music",
-            pageType: "album_door",
-            pageViewGuid: LFM.viewGuid
-        }
-    };
-</script>
-
-<!-- Adobe Marketing Cloud Tag Loader Code-->
-<script type="text/javascript">//<![CDATA[
-var amc=amc||{};if(!amc.on){amc.on=amc.call=function(){}};
-document.write("<scr"+"ipt type=\"text/javascript\" src=\"//www.adobetag.com/d2/v2/ZDItY2JzaW50ZXJhY3RpdmUtNDgxNC00MTct/amc.js\"></sc"+"ript>");
-//]]></script>
-<!-- End Adobe Marketing Cloud Tag Loader Code -->
-<script>
-LFM.Button.MultiButton.setup();
-LFM.Display.setMinHeight();
-</script>
-
-<div id="fb-root"></div>
-    
-    
-    <script src="http://cn.cbsimg.net/cnwk.1d/Aud/javascript/last/apex.js"></script>
-    <script>
-        var cbsiApexGlobal = {
-                    'SITE' : '190',
-                    'PTYPE' : '2000'
-                  };
-        if (typeof cbsiRunApexTargets === "function") {
-            cbsiRunApexTargets(cbsiApexGlobal, 1000);
-        }
-    </script>
-
-        
-    <script>
-    window.ClickTaleSettings = { XHRWrapper: { Enable: true} };
-    document.write(unescape("%3Cscript%20src='" +
-(document.location.protocol == 'https:' ?
-  'https://clicktalecdn.sslcs.cdngc.net/' :
-  'http://cdn.clicktale.net/') +
-"www09/ptc/220b3951-66a2-4b8e-ac35-fa58bfb30846.js'%3E%3C/script%3E"));
-
-    </script>
-    
-
-    
-        
-    </body>
-</html>
\ No newline at end of file
diff --git a/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.xml b/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.xml
deleted file mode 100644
index 5a65efa572df456b1d43dff34603c7235be5225d..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_album_monsieur_gainsbourg_revisited.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<lfm status="ok">
-<results for="MONSIEUR GAINSBOURG REVISITED" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
-<opensearch:Query role="request" searchTerms="MONSIEUR GAINSBOURG REVISITED" startPage="1" />
-<opensearch:totalResults>1</opensearch:totalResults>
-<opensearch:startIndex>0</opensearch:startIndex>
-<opensearch:itemsPerPage>50</opensearch:itemsPerPage><albummatches>
-<album>
-    <name>Monsieur Gainsbourg Revisited</name>
-    <artist>Various Artists</artist>
-    <id>2857031</id>
-    <url>http://www.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited</url>
-    <image size="small">http://userserve-ak.last.fm/serve/34s/50649339.png</image>
-    <image size="medium">http://userserve-ak.last.fm/serve/64s/50649339.png</image>
-    <image size="large">http://userserve-ak.last.fm/serve/126/50649339.png</image>
-    <image size="extralarge">http://userserve-ak.last.fm/serve/300x300/50649339.png</image>
-    <streamable>0</streamable>
-            <mbid>d2b1d49f-eefb-45f4-a067-8eb481618752</mbid>
-    </album>
-</albummatches>
-</results></lfm>
diff --git a/tests/fixtures/lastfm_artist_christophe.html b/tests/fixtures/lastfm_artist_christophe.html
deleted file mode 100644
index 414eb029f8e87deff84e98ee8f4ee890e3c234f6..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_artist_christophe.html
+++ /dev/null
@@ -1,816 +0,0 @@
-<!DOCTYPE html>
-<html lang="fr" class="no-js lastfm" data-ad-zone="userstore:userstore:images">
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" />
-    <link rel="profile" href="http://purl.org/uF/2008/03/" />
-        <!–[if IE]><![endif]–>
-
-                <title>                        Photos de Christophe 
-                 – Last.fm</title>    
-        <script>(function(e) { e.className = e.className.replace(/\bno-js\b/,'js'); })(document.documentElement)</script>
-
-    <link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch.xml" title="Last.fm" />
-            <meta name="description" content="Regardez des vidéos et écoutez gratuitement Christophe: Aline, Les Mots Bleus &amp;amp; plus et 21 images. Christophe, de son vrai nom Daniel Bevilacqua, est un chanteur français né le 13 octobre 1945 à Juvisy-sur-Orge, en banlieue parisienne. Il est le fils d&amp;#8217;un entrepreneur en maçonnerie d&amp;#8217;origine italienne. Il était aussi, paraît-il, un génie dans l&amp;#8217;art du chant alors qu&amp;#8217;il n&amp;#8217;était qu&amp;#8217;adolescent. En 1965, il devient une vedette avec la ballade Aline, chronologiquement un des premiers slows de l&amp;#8217;été en France avec le J&amp;#8217;entends siffler le train de Richard Anthony. Le succès colossal de ce titre (il s&amp;#8217;en vendra un million d&amp;#8217;exemplaires) dont il a écrit paroles et musiques lui vaudra quelque temps plus tard un procès pour plagiat du chanteur Jacky Moulière, qu&amp;#8217;il perdra mais gagnera en appel à la fin des années 1970. Découvrez de la musique, des concerts, des vidéos et des images grâce au catalogue online Last.fm."/>
-
-
-            <meta name="robots" content="NOODP" />
-
-        
-                <meta property="og:site_name" content="Last.fm" />
-<meta property="fb:app_id" content="192959324047861" />
-
-            
-                        
-    <meta property="og:title" content="Christophe" />
-    <meta property="og:url" content="http://www.lastfm.fr/music/Christophe" />
-    <meta property="og:image" content="http://userserve-ak.last.fm/serve/126/44611277.jpg" />
-
-    
-            <meta property="og:type" content="band" />    
-                <link rel="shortcut icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
-        <link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
-    
-        <meta name="msapplication-TileImage" content="http://cdn.last.fm/flatness/lastfm_win8_tile_144.png" />
-    <meta name="msapplication-TileColor" content="#d51007" />
-    
-        <meta name="apple-itunes-app" content="app-id=585235199">
-
-    
-    
-    
-                <link rel="alternate" hreflang="en" href="http://www.last.fm/music/Christophe/+images" />
-    
-            <link rel="alternate" hreflang="de" href="http://www.lastfm.de/music/Christophe/+images" />
-                <link rel="alternate" hreflang="es" href="http://www.lastfm.es/music/Christophe/+images" />
-                        <link rel="alternate" hreflang="it" href="http://www.lastfm.it/music/Christophe/+images" />
-                <link rel="alternate" hreflang="ja" href="http://www.lastfm.jp/music/Christophe/+images" />
-                <link rel="alternate" hreflang="pl" href="http://www.lastfm.pl/music/Christophe/+images" />
-                <link rel="alternate" hreflang="pt" href="http://www.lastfm.com.br/music/Christophe/+images" />
-                <link rel="alternate" hreflang="ru" href="http://www.lastfm.ru/music/Christophe/+images" />
-                <link rel="alternate" hreflang="sv" href="http://www.lastfm.se/music/Christophe/+images" />
-                <link rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/music/Christophe/+images" />
-                <link rel="alternate" hreflang="zh" href="http://cn.last.fm/music/Christophe/+images" />
-        
-    
-        <style>html {zoom: 1;}</style>    <script>
-
-        if(top !== self && top.location.domain !== self.location.domain) {
-            (function(d, s) {
-                if(s && s.insertRule) {
-                    s.insertRule('body { display: none !important }', 0);
-                } else if(s && s.addRule) {
-                    s.addRule('body', 'display: none !important');
-                }
-                top.location.replace(d.location.href);
-            })(document, document.styleSheets[0]);
-        }
-</script>
-
-                                        <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/themes/whittle.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/master.css" />
-                        
-        
-<!--[if lt IE 9]>
-    <script>
-
-        window.html5 = {
-            shivCSS: false
-        }
-</script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/html5shiv.js"></script>
-<![endif]-->
-
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
-<script>$.noConflict();</script>
-<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
-<script>
-    if(typeof Prototype === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/prototype.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>
-<script>
-    if(typeof Scriptaculous === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/scriptaculous/scriptaculous.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/mustache-min.js"></script>
-
-<script>SM2_DEFER = true;</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/sm2-min.js"></script>
-
-<script src="http://cdn.last.fm/javascript/javascript/231805/LFM.js"></script>
-
-<script>
-    LFM.set("ParentResource", {"id":"1067241","type":6,"name":"Christophe","url":"\/music\/Christophe","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34\/44611277.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/44611277.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64\/44611277.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/44611277.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/44611277.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/44611277.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/252\/44611277.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/44611277\/Christophe+6.jpg"}});
-    LFM.Adserver.showAds = true;
-    LFM.set("Session", {"cookieHost":".lastfm.fr","host":"www.lastfm.fr","staticHost":"http:\/\/cdn.last.fm","wsHost":"ws.audioscrobbler.com","userserveHost":"http:\/\/userserve-ak.last.fm","wsKey":"ceec2bb03d4c5929f0d6667fc266dc75","formtoken":"2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3","location":"fr","language":"fr","ajaxhost":"ajax.last.fm","templatePath":"\/templates\/231606","jsPath":"http:\/\/cdn.last.fm\/javascript\/javascript\/231805","cssPath":"http:\/\/cdn.last.fm\/css\/css\/231774","loggedIn":false});
-    LFM.set("resTypes", {
-        EVENT: 29,
-        ARTIST: 6,
-        ALBUM: 8,
-        TRACK: 9,
-        GROUP: 20,
-        TAG: 32,
-        USER: 4,
-        LABEL: 10
-    });
-    LFM.set("resTypeLookup", {
-        29: "Event",
-        6: "Artist",
-        8: "Album",
-        9: "Track",
-        20: "Group",
-        32: "Tag",
-        4: "User",
-        10: "Label"
-    });
-
-    LFM.set("String", {okText: "OK",cancelText: "Annuler",clickToEditText: "Cliquer pour modifier",savingText: "Enregistrement...",loadingText: "Chargement...",deletingText: "Suppression...",thereWasAnError: "Une erreur s'est produite.",dialogLoadError: "Une erreur s'est produite lors du chargement de ce dialogue.",fileTooBig: "Désolé, le fichier est trop volumineux.",noFile: "Merci de sélectionner un fichier. ",uploadCancelled: "Upload annulé",deleteMessageTitle: "Supprimer le message",deleteMessagePrompt: "Voulez-vous vraiment supprimer ce message ?",deleteFriendPrompt: "Voulez-vous vraiment supprimer cet(te) ami(e) ?",deleteImage: "Voulez-vous vraiment supprimer cette image ?",deleteButtonText: "Supprimer",done: "C'est fait",backText: "Retour",yesText: "Oui",noText: "Non",saveText: "Enregistrer ",saveTitle: "Ajouter au profil",sendText: "Envoyer",sendTitle: "Partager avec vos amis",addTitle: "Ajouter à la bibliothèque",tagTitle: "Ajouter des tags",playlistTitle: "Ajouter à la playlist",befriendTitle: "Ajouter un ami",labsfeedbackTitle: "Donnez-nous votre avis",joinTitle: "Devenir membre du groupe",loved: "Ajouté aux coups de coeur.",RemoveFromLibraryTitle: "Supprimer de la bibliothèque",uploadImageTitle: "Uploader une image",uploadVideoTitle: "Importer une vidéo",usernoteTitle: "Add a note",cleanupBioTitle: "Cleanup Bio",flageventTitle: "Signaler une erreur",setLocationTitle: "Définissez votre localisation",newWindowTooltip: "Ce lien s\'affichera dans une nouvelle fenêtre",unloadWarningMessage: "Ceci va interrompre la lecture",trackLoved: "Vous avez ajouté ce titre à vos coups de cœur",playbackStopped: "Lecture interrompue",loadingTrackInfo: "Chargement des informations sur ce  titre",errorLoadingTrackInfo: "Une erreur s'est produite lors du chargement des informations sur ce titre",emailLineup: "Envoyer par email",uploadMessages: {mayTakeLonger: "Désolé, cela risque de prendre un peu plus de temps que d'habitude. Patientez quelques instants.",uploading: "Transfert en cours...",endUploading: "C'est fait",progressDisplay: "PERCENTUPLOADED% effectués (TRANSFERRATE kb/s) – TIMEREMAINING secondes restantes",progressComplete: "100% effectués",failedRetrying: "Impossible de retrouver l'upload, annulé.",processingMedia: "Prise en charge du média...",unsupportedFormat: "Désolé, le format du fichier que vous avez uploadé n'est pas pris en charge. Réessayez.",uploadError: "Une erreur s'est produite lors du transfert de votre vidéo. Vérifiez que le fichier n'est pas trop volumineux et que son format est pris en charge, puis réessayez."},shortMonths: {'1': " jan.",'2': " fév.",'3': "mars",'4': "avr.",'5': "mai",'6': "juin",'7': "jui.",'8': "août",'9': "sept.",'10': "oct.",'11': "nov.",'12': " déc."},resTypePlural: {29: "Concerts",6: "Artistes",8: "Albums",9: "Titres",20: "Groupes",32: "Tags",4: "Utilisateurs ","friends":   "Amis",10: "Labels"}});LFM.set("Element", {icon_loved_indicator: "<img class=\"icon loved_indicator_icon\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_tag: "<img class=\"icon tag_icon\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_dismiss: "<img class=\"icon dismiss_icon\" width=\"16\" height=\"16\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_play: "<img class=\"transparent_png play_icon\" width=\"13\" height=\"13\" alt=\"\u00c9couter\" src=\"http:\/\/cdn.last.fm\/flatness\/preview\/play_indicator.png\" style=\"\" \/>"});
-        LFM.AdPlacements = ["beacon","interstitial","skin","leaderboard","relatedcontent","lowerleaderboard"];
-</script>
-
-
-<script data-main="http://cdn.last.fm/javascript/javascript/231805/modules-built/init" src="http://cdn.last.fm/javascript/javascript/231805/lib/requirejs/require-min.js"></script>
-
-    <script src="http://cdn.last.fm/javascript/javascript/231805/components.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/dialog.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/form/typeahead.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/uuid.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/modernizr.js"></script>
-
-<script>
-
-LFM.Page.Tracker = new LFM.Analytics.Tracker('Music/Artist/Images', window.location.host);
-
-document.observe('dom:loaded', function() {
-
-    LFM.Page.Tracker.bindOutboundLinkListener();
-    LFM.Page.Tracker.bindEventListener();
-
-});
-
-</script>
-
-
-    
-    <script>document.observe("dom:loaded", function () { if (typeof ieHover !== 'undefined') ieHover.setUp(); });</script>
-
-    <script data-require="googleanalytics">LFM.Analytics = LFM.Analytics || {};LFM.Analytics.Helpers = {webhost:"www.lastfm.fr",registrationStatus:"LoggedOut",visitorStatus: "Anonymous",artistNameString:"Christophe",transformedUrl:"music/artist/images"}</script></head>
-
-
-
-<!--[if lt IE 7 ]> <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie6"> <![endif]-->
-<!--[if IE 7 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie7"> <![endif]-->
-<!--[if IE 8 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie8"> <![endif]-->
-<!--[if IE 9 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie9"> <![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <body class="r-artist a-images lfmRed  lang-fr theme-whittle" > <!--<![endif]-->
-
-        <script>var WRInitTime = +new Date();</script>
-
-    
-            <div id="page" class="page-hack"></div>        <div class=" page-wrapper">
-            
-
-<div id="LastAd_beacon" class="LastAd ad-beacon inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="beacon" data-ad-collapsible>
-    <span>     
-            <script>
-
-
-var googletag = googletag || {};
-googletag.cmd = googletag.cmd || [];
-
-(function() {
-    var useSSL = 'https:' == document.location.protocol;
-    var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
-    document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
-})();
-
-</script>
-
-<script>
-    
-    var googleSlots = { };
-    var googleDisplayed = false;
-    
-
-    googletag.cmd.push(function() {
-        var unitName = "/8264/row-lastfm/userstore/userstore/images",
-            isVR = false,
-            isDynamic = false,
-            isAnonHome = false;
-    
-
-    function hasPlacement(placement) {
-        return LFM.AdPlacements.indexOf(placement) >= 0;
-    };
-
-    var leaderboardSizes = [[728,90],[970,66],[970,90],[860,55]];
-    // The leaderboard slot height is fixed at 90px when using dynamic ads,
-    // showing a taller leaderboard would cause the page to jump, so we don't request them
-    if ( ! isDynamic) {
-        leaderboardSizes.push([880,150],[880,170],[880,200],[900,150],[900,250],[970,200],[970,250],[860,250],[980,250]);
-    }
-    if (hasPlacement('leaderboard')) {
-        googleSlots['leader_top'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    var mpuSizes = [[300,250],[138,108]] ;
-    if (! isAnonHome) {
-        mpuSizes.push([300,600]);
-    }
-
-    var lowerMpuSizes = [[300,250]];
-
-    if (hasPlacement('mpu')) {
-        googleSlots['mpu_top'] = googletag.defineSlot(unitName, mpuSizes, "mpu_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('lowermpu')) {
-        googleSlots['mpu_bottom'] = googletag.defineSlot(unitName, lowerMpuSizes, "mpu_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('skin')) {
-        googleSlots['skin'] = googletag.defineSlot(unitName, [1600,1000], "skin")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('interstitial')) {
-        googleSlots['intromercial'] = googletag.defineOutOfPageSlot(unitName, "intromercial")
-        .addService(googletag.pubads());
-    }
-
-    if (hasPlacement('lowerleaderboard')) {
-        googleSlots['leader_bottom'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('sky')) {
-        googleSlots['sky_top'] = googletag.defineSlot(unitName, [160,600], "sky_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    // Collapse as soon as display() for the slot is reached and expand only when there is an ad
-    // i.e. no flickering
-    googletag.pubads().collapseEmptyDivs(true);
-
-    if ( ! isVR) {
-        googletag.pubads().enableSingleRequest();    
-
-        if ( ! isDynamic) {
-            googletag.pubads().enableSyncRendering();    
-        }
-    }
-
-    if (screen.width >= 1280) {
-        googletag.pubads().setTargeting("inskin", "yes");
-    }
-
-    
-
-            googletag.pubads().setTargeting("ar", "christophe,michelpolnareff,jean-louismurat,alainbashung,danieldarc,alainchamfort,Étiennedaho,micheldelpech,véroniquesanson,eddymitchell,claudenougaro");
-            googletag.pubads().setTargeting("tag", "french,chansonfrancaise,singer-songwriter,frenchpop,chanson,pop,pop-rock,france,malevocalists,romantic");
-            googletag.pubads().setTargeting("geo", "FR");
-            googletag.pubads().setTargeting("lang", "fr");
-            googletag.pubads().setTargeting("res", "1067241");
-            googletag.pubads().setTargeting("ontour", "1");
-            googletag.pubads().setTargeting("ontourinusercountry", "1");
-            googletag.pubads().setTargeting("established", "1");
-    
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    googletag.pubads().setTargeting("viewguid", LFM.viewGuid);
-
-    googletag.enableServices();
-    
-
-  });
-
-</script>        
-    </span>
-</div>
-    <div id="LastAd_interstitial" class="LastAd ad-interstitial inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="interstitial" data-ad-collapsible>
-    <span>     
-            <div id="intromercial">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("intromercial"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_skin" class="LastAd ad-skin inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="skin" data-ad-collapsible>
-    <span>     
-            <div id="skin">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("skin"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_leaderboard" class="LastAd ad-leaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="leaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_top">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_top"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-<div class="masthead-wrapper">
-
-    
-    
-                
-    <header class="masthead" role="banner">
-        <h1>
-            <a href="/" class="ir lastfm-logo">
-                Last.fm
-            </a>
-        </h1>
-
-        <form
-            class="
-                site-search
-                search-autocomplete
-                search-autocomplete--main
-            "
-            method="get"
-            action="/search"
-            role="search"
-            data-require="search/sitesearch"
-            data-template="search"
-            data-url="/search/autocomplete"
-                    >
-            <fieldset>
-                <legend class="rm">Rechercher sur le site</legend>
-                <input type="text" name="q" autocorrect="off" autocomplete="off" placeholder="Recherche de musique" size="26" class="js-search search-box" />
-                <div class="js-search-progress search-progress ir">En chargement</div>
-                <input type="hidden" name="from" value="ac" />
-                <button type="submit" class="search-submit icon iconleft iconleft--search" title="Recherche"></button>
-            </fieldset>
-        </form>
-
-        <nav role="navigation">
-            <ul class="primary-nav remove-bottom-margin">
-                <li class="primary-nav-item">
-                    <a href="/music" class="primary-nav-link">Musique</a>
-                </li>
-                <li id="listenNav" class="primary-nav-item">
-                    <a href="/listen" class="primary-nav-link">Écouter</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/events" class="primary-nav-link">Concerts</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/charts" class="primary-nav-link">Charts</a>
-                </li>
-                                            </ul>
-
-            <div class="masthead-right" role="navigation">
-                                    <a href="/join" class="join" data-analytics-action="SignUpClick" data-analytics-label="Header">Rejoignez-nous</a>
-                    <a href="/login" id="login-link" class="btn btn--small btn--header btn--rounded login">Connexion</a>
-                            </div>
-        </nav>
-    </header>
-        
-    <link rel="stylesheet" type="text/css" href="//embed.spotify.com/static/css/mediabar/mediabar-lastfm.css" />
-<div class="persistent-bar">
-    <div class="spotify-mediabar-wrapper">
-        <div id="spotify-mediabar" class="spotify-mediabar" data-require="spotify/spotifymediabar"></div>
-    </div>
-    <a href="#" class="spotify-mediabar-feedback" data-require="labfeedbackbutton" data-lab-name="spotifyplayback">
-        <span class="beta-badge">Bêta</span> Avis
-    </a>
-</div>
-<div id="spotify-signup-complete-modal" data-require="spotify/signupcompletemodal">
-    <div class="sparse-modal js-modal"></div>
-</div>
-    </div>
-
-
-<div class="content">
-        <header class="    page-head
-    with-crumbtrail
-    with-image
-    clearit
-">
-            <div class="crumb-wrapper">
-            <div class="top-crumb">
-                <a href="/music/Christophe"    >                    <img class="crumb-image" src="http://userserve-ak.last.fm/serve/64s/44611277.jpg" alt="Miniature de Christophe" width="60" height="60" />
-            Christophe</a>            </div>
-                <h1 >
-        Images    </h1>
-
-        </div>
-    
-    <nav class="secondary-nav" role="navigation" data-require="secondarynav">
-        <ul class="visible-menu">
-            <li class=" first "><a href="/music/Christophe/+tracks">Titres</a></li>        <li><a href="/music/Christophe/+albums">Albums</a></li>
-                <li class=" current "><a href="/music/Christophe/+images">Images</a></li>        
-                <li><a href="/music/Christophe/+videos">Vidéos</a></li>        
-        <li><a href="/music/Christophe/+events">Concerts</a></li>
-                    <li><a href="/music/Christophe/+wiki">Biographie</a></li>        
-        <li><a href="/music/Christophe/+similar">Artistes similaires</a></li>        <li><a href="/music/Christophe/+charts">Charts</a></li>        <li><a href="/music/Christophe/+tags">Tags</a></li>        <li><a href="/music/Christophe/+listeners">Auditeurs</a></li>        <li><a href="/music/Christophe/+journal">Articles</a></li>        <li><a href="/music/Christophe/+news">Actualités</a></li>        <li><a href="/music/Christophe/+groups">Groupes</a></li>    
-</ul>    <div class="drop-down-menu more">
-    <a href="#" class="menu-toggle">Plus...</a>
-    <ul class="hidden-menu"></ul>
-</div></nav></header>
-    
-        <nav class="r add-bottom-margin">
-            <div class="g6">
-                <ul class="toggle-list add-right-margin"><li class="toggle-list-current"><span class="btn btn--small btn--toggle-left btn--brand-blue is-pressed">Populaire</span></li><li><a href="/music/Christophe/+images?sort=date" class="btn btn--small btn--toggle-right">Nouvelles images</a></li></ul>
-                    
-            </div>
-            <div class="g6">
-                            </div>
-        </nav>
-
-
-        
-        <ul id="pictures" class="pictures clearit">
-    <li id="r50_44611277_1471095678" data-res-id="44611277" class="img-44611277 first">
-                                            <a href="/music/Christophe/+images/44611277"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  6 avr. 2010 par Crank-Liver" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/44611277.jpg" />        </a>        </li><li id="r50_256904_428572525" data-res-id="256904" class="img-256904">
-                                            <a href="/music/Christophe/+images/256904"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2006 par chair000" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/256904.jpg" />        </a>        </li><li id="r50_42544099_1277136570" data-res-id="42544099" class="img-42544099">
-                                            <a href="/music/Christophe/+images/42544099"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544099.jpg" />        </a>        </li><li id="r50_43504691_454720885" data-res-id="43504691" class="img-43504691">
-                                            <a href="/music/Christophe/+images/43504691"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  15 mars 2010 par LEISURE" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/43504691.jpg" />        </a>        </li><li id="r50_42544475_1019555674" data-res-id="42544475" class="img-42544475">
-                                            <a href="/music/Christophe/+images/42544475"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544475.jpg" />        </a>        </li><li id="r50_90095031_584256502" data-res-id="90095031" class="img-90095031">
-                                            <a href="/music/Christophe/+images/90095031"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2013 par CidaDuarteF" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/90095031.jpg" />        </a>        </li><li id="r50_44611243_1352521046" data-res-id="44611243" class="img-44611243">
-                                            <a href="/music/Christophe/+images/44611243"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  6 avr. 2010 par Crank-Liver" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/44611243.jpg" />        </a>        </li><li id="r50_42544215_607028474" data-res-id="42544215" class="img-42544215">
-                                            <a href="/music/Christophe/+images/42544215"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544215.jpg" />        </a>        </li><li id="r50_90094989_252891915" data-res-id="90094989" class="img-90094989">
-                                            <a href="/music/Christophe/+images/90094989"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2013 par CidaDuarteF" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/90094989.jpg" />        </a>        </li><li id="r50_42544459_1255936298" data-res-id="42544459" class="img-42544459">
-                                            <a href="/music/Christophe/+images/42544459"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544459.jpg" />        </a>        </li><li id="r50_42544189_245955166" data-res-id="42544189" class="img-42544189">
-                                            <a href="/music/Christophe/+images/42544189"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544189.jpg" />        </a>        </li><li id="r50_42544165_1407948104" data-res-id="42544165" class="img-42544165">
-                                            <a href="/music/Christophe/+images/42544165"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544165.jpg" />        </a>        </li><li id="r50_39203357_1262982785" data-res-id="39203357" class="img-39203357">
-                                            <a href="/music/Christophe/+images/39203357"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  12  déc. 2009" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/39203357.jpg" />        </a>        </li><li id="r50_10575827_149423440" data-res-id="10575827" class="img-10575827">
-                                            <a href="/music/Christophe/+images/10575827"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23 août 2008" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/10575827.jpg" />        </a>        </li><li id="r50_90095049_740421297" data-res-id="90095049" class="img-90095049">
-                                            <a href="/music/Christophe/+images/90095049"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2013 par CidaDuarteF" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/90095049.jpg" />        </a>        </li><li id="r50_42544517_1878236937" data-res-id="42544517" class="img-42544517">
-                                            <a href="/music/Christophe/+images/42544517"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544517.jpg" />        </a>        </li><li id="r50_42544391_1091621572" data-res-id="42544391" class="img-42544391">
-                                            <a href="/music/Christophe/+images/42544391"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544391.jpg" />        </a>        </li><li id="r50_42544235_33072440" data-res-id="42544235" class="img-42544235">
-                                            <a href="/music/Christophe/+images/42544235"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  23  fév. 2010 par paulinochacon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42544235.jpg" />        </a>        </li><li id="r50_68826236_1849617952" data-res-id="68826236" class="img-68826236">
-                                            <a href="/music/Christophe/+images/68826236"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  13 sept. 2011 par DestroyxElysia" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/68826236.png" />        </a>        </li><li id="r50_90095015_534124506" data-res-id="90095015" class="img-90095015">
-                                            <a href="/music/Christophe/+images/90095015"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2013 par CidaDuarteF" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/90095015.jpg" />        </a>        </li><li id="r50_90094961_1737068610" data-res-id="90094961" class="img-90094961 last">
-                                            <a href="/music/Christophe/+images/90094961"     class="pic">            <img alt="Vignette de Christophe" title="Ajoutée  1 juin 2013 par CidaDuarteF" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/90094961.jpg" />        </a>        </li>
-</ul>
-        
-        <div id="LastAd_relatedcontent" class="LastAd ad-relatedcontent inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="relatedcontent" data-ad-collapsible>
-    <span>     
-                    
-    </span>
-</div>
-        <nav>
-                    </nav>
-
-    </div>
-
-<div id="LastAd_lowerleaderboard" class="LastAd ad-lowerleaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="lowerleaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_bottom">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_bottom"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-
-                            <footer role="banner" class="site-footer">
-    <nav class="site-footer-nav">
-        <div class="r add-bottom-margin">
-            <a href="/uploadmusic" class="g call-to-action call-to-action--upload" data-analytics-action="FooterClick" data-analytics-label="Artists and Labels">
-                <h2>Artistes et labels</h2>
-                <p>Entrez en contact avec vos fans en téléchargeant votre musique sur Music Manager</p>
-            </a>
-            <a href="/download" class="g call-to-action call-to-action--download" data-analytics-action="FooterClick" data-analytics-label="Download Desktop App">
-                <h2>Télécharger nos apps</h2>
-                <p>Profitez des apps Last.fm pour bureau et portable, et commencez à scrobbler</p>
-            </a>
-        </div>
-        <hr class="separator" />
-        <ul class="r add-bottom-margin">
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Société</h2>
-                <a href="#show-company" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Société</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/about" data-analytics-action="FooterClick" data-analytics-label="About us">Qui sommes-nous ? </a></li>
-                    <li><a href="/about/contact" data-analytics-action="FooterClick" data-analytics-label="Contact us">Nous contacter</a></li>
-                    <li><a href="/about/jobs" data-analytics-action="FooterClick" data-analytics-label="Jobs">Offres d'emploi</a></li>
-                    <li><a href="http://blog.last.fm" data-analytics-action="FooterClick" data-analytics-label="Blog">Blog</a></li>
-                    <li><a href="/advertise" data-analytics-action="FooterClick" data-analytics-label="Advertise">Publicité</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Communauté</h2>
-                <a href="#show-join" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Communauté</h2>
-                </a>
-                <ul class="toggle-target">
-                                        <li><a href="/join" data-analytics-action="FooterClick" data-analytics-label="Sign up">S'inscrire</a></li>
-                    <li><a href="/community/users" data-analytics-action="FooterClick" data-analytics-label="Find people">Trouver des utilisateurs</a></li>
-                                        <li><a href="/community/groups" data-analytics-action="FooterClick" data-analytics-label="Find groups">Trouver des groupes</a></li>
-                    <li><a href="/community" data-analytics-action="FooterClick" data-analytics-label="Community">Communauté</a></li>
-                    <li><a href="/forum" data-analytics-action="FooterClick" data-analytics-label="Forums">Forums</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Cadeaux</h2>
-                <a href="#show-goodies" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Cadeaux</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/hardware" data-analytics-action="FooterClick" data-analytics-label="More apps">Plus d'apps et d'appareils</a></li>
-                    <li><a href="/api" data-analytics-action="FooterClick" data-analytics-label="Last.fm API">API développeur </a></li>
-                    <li><a href="http://build.last.fm" data-analytics-action="FooterClick" data-analytics-label="Tools, plugins & more">Outils et plug-ins</a></li>
-                    <li><a href="http://playground.last.fm" data-analytics-action="FooterClick" data-analytics-label="Playground">Playground</a></li>
-                    <li><a href="/music/+free-music-downloads" data-analytics-action="FooterClick" data-analytics-label="Free music downloads">Téléchargements de musique gratuits</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Aide</h2>
-                <a href="#show-help" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Aide</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/help" data-analytics-action="FooterClick" data-analytics-label="Help & support">Aide et assistance</a></li>
-                    <li><a href="http://status.last.fm/" data-analytics-action="FooterClick" data-analytics-label="System status">État du système</a></li>
-                                    </ul>
-            </li>
-        </ul>
-    </nav>
-    <hr class="separator" />
-                <nav role="navigation" class="language-selector clearit toggle-container" id="change-language" data-require="toggle">
-        <h2 class="rm">Langues :</h2>
-        <ul class="inline-items inline-items--dotted">
-            <li class="current-language">
-                <strong class="current-language-text iconleft iconleft--globe">
-                    Français
-                    <span class="rm">(langue actuelle)</span>
-                </strong>
-                <a href="#show-languages" class="iconleft iconleft--globe iconright iconright--dropdown language-toggle js-toggle">
-                    <strong>Français</strong><span class="rm">(langue actuelle) - Changer de langue</span>
-                </a>
-            </li>
-            <li class="language-options toggle-target">
-                <ul class="language-options-group">
-                                            <li class="language-option">
-                            <a
-                                href="http://www.last.fm/music/Christophe/+images?setlang=en"
-                                rel="alternate"
-                                hreflang="en"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > en"
-                            >English</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.de/music/Christophe/+images?setlang=de"
-                                rel="alternate"
-                                hreflang="de"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > de"
-                            >Deutsch</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.es/music/Christophe/+images?setlang=es"
-                                rel="alternate"
-                                hreflang="es"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > es"
-                            >Español</a>
-                        </li>
-                                                                                                                            <li class="language-option">
-                            <a
-                                href="http://www.lastfm.it/music/Christophe/+images?setlang=it"
-                                rel="alternate"
-                                hreflang="it"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > it"
-                            >Italiano</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.jp/music/Christophe/+images?setlang=jp"
-                                rel="alternate"
-                                hreflang="ja"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > jp"
-                            >日本語</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.pl/music/Christophe/+images?setlang=pl"
-                                rel="alternate"
-                                hreflang="pl"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pl"
-                            >Polski</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.br/music/Christophe/+images?setlang=pt"
-                                rel="alternate"
-                                hreflang="pt"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pt"
-                            >Português</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.ru/music/Christophe/+images?setlang=ru"
-                                rel="alternate"
-                                hreflang="ru"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > ru"
-                            >Руccкий</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.se/music/Christophe/+images?setlang=sv"
-                                rel="alternate"
-                                hreflang="sv"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > sv"
-                            >Svenska</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.tr/music/Christophe/+images?setlang=tr"
-                                rel="alternate"
-                                hreflang="tr"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > tr"
-                            >Türkçe</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://cn.last.fm/music/Christophe/+images?setlang=zh"
-                                rel="alternate"
-                                hreflang="zh"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > zh"
-                            >简体中文</a>
-                        </li>
-                                                        </ul>
-            </li>
-        </ul>
-        <hr class="separator" />
-    </nav>
-
-     
-<div class="site-footer-legalese">
-    <blockquote class="site-footer-strapline">“Run For The Last.fm.”</blockquote>
-    <ul class="inline-items inline-items--dotted">
-        <li>
-            <a href="http://www.cbsinteractive.com">CBS Interactive</a> &copy; 2014 Last.fm Ltd.         </li>
-        <li>
-            <a href="/legal/terms" data-analytics-action="FooterClick" data-analytics-label="Terms of Use">Conditions d'utilisation</a>, 
-                    <a href="/legal/privacy" data-analytics-action="FooterClick" data-analytics-label="Privacy Policy">Politique de confidentialité</a> et 
-         <a href="/legal" data-analytics-action="FooterClick" data-analytics-label="Legal">Politiques juridiques</a> — <span class="date">Dernière mise à jour : 26 nov. 2013</span>
-        </li>
-        <li>
-            <a href="http://www.gamespot.com">Gamespot</a>
-        </li>
-    </ul>
-        </div></footer>                    </div>
-    
-    <div id="multiButtonMenu" style="display: none;">
-    <div>
-        <ul class="lfmDropDownBody">
-            <li class="mAddToLibrary"><a href="#">Ajouter à ma bibliothèque</a></li>
-            <li class="mAddToFriends"><a href="#">Ajouter à la liste d'amis</a></li>
-            
-            <!-- <li class="save"><a href="#">Ajouter aux favoris</a></li> -->
-            <li class="mSend"><a href="#">Partager</a></li>
-            
-            <li class="mLove"><a href="#">Ajouter à mes coups de cœur</a></li>
-            <li class="mUnlove"><a href="#">Retirer des coups de cœur</a></li>
-            <li class="mBan"><a href="#">Bannir ce titre</a></li>
-            <li class="mUnban"><a href="#">Annuler le bannissement de ce titre</a></li>
-
-            <li class="mAddTags"><a href="#">Ajouter des tags</a></li>
-            <li class="mAddToPlaylist"><a href="#">Ajouter à la playlist</a></li>
-            
-            <li class="mRemoveFromLibrary"><a href="#">Supprimer de la bibliothèque</a></li>
-            
-            <li class="mBuy"><a href="#">Acheter la chanson</a></li>
-                        <li class="mMessage"><a href="#">Envoyer un message</a></li>
-                        <li class="mEditDetails"><a href="#">Modifier les infos</a></li>
-            <li class="mMessageAll"><a href="#">Écrire un message à tous les utilisateurs</a></li>
-            <li class="mEditPermissions"><a href="#">Modifier les autorisations</a></li>
-            <li class="mAbdicate"><a href="#">Céder ma place</a></li>
-            <li class="mLeave"><a href="#">Quitter ce groupe</a></li>
-            
-            <li class="mLoading"><a href="#">&nbsp;</a></li>
-        </ul>
-    </div>
-</div>
-
-
-
-<div style="display: none">
-    <script src="//dw.cbsimg.net/js/cbsi/ds.js"></script>
-    <script>
-        if (typeof DW === "object") {
-            DW.pageParams = {
-                siteid: '190',
-                ptid: '5026'
-            };
-            DW.tagNielsen = false;
-            DW.clear();
-        }
-    </script>
-    <noscript>
-        <img src="//dw.cbsimg.net/clear/c.gif?ts=1406192339&amp;sid=190;" />
-    </noscript>
-</div>
-<div id="LastAd_tracking" class="LastAd ad-tracking inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="tracking" data-ad-collapsible>
-    <span>     
-            <iframe name="__bkframe" height="0" width="0" frameborder="0" src="javascript:void(0)"></iframe>
-<script type="text/javascript" src="//tags.bkrtx.com/js/bk-coretag.js"></script>
-<script type="text/javascript">
-            bk_addPageCtx("ar", "christophe,michelpolnareff,jean-louismurat,alainbashung,danieldarc,alainchamfort,Étiennedaho,micheldelpech,véroniquesanson,eddymitchell,claudenougaro");
-            bk_addPageCtx("tag", "french,chansonfrancaise,singer-songwriter,frenchpop,chanson,pop,pop-rock,france,malevocalists,romantic");
-            bk_addPageCtx("path", "row-lastfm/userstore/userstore/images");
-            bk_addPageCtx("site", "ccbsilastfmsite");
-            bk_addPageCtx("ptype", "artist_gallery_list");
-        bk_ignore_meta = true;
-    bk_doJSTag(16515, 4);
-</script>        
-    </span>
-</div>
-
-
-<script data-require="omniture">
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    var omdata = {
-        context: {
-                        musicArtistId: "lfm-artist-1067241",
-                                    siteSection: "music",
-            pageType: "artist_gallery_list",
-            pageViewGuid: LFM.viewGuid
-        }
-    };
-</script>
-
-<!-- Adobe Marketing Cloud Tag Loader Code-->
-<script type="text/javascript">//<![CDATA[
-var amc=amc||{};if(!amc.on){amc.on=amc.call=function(){}};
-document.write("<scr"+"ipt type=\"text/javascript\" src=\"//www.adobetag.com/d2/v2/ZDItY2JzaW50ZXJhY3RpdmUtNDgxNC00MTct/amc.js\"></sc"+"ript>");
-//]]></script>
-<!-- End Adobe Marketing Cloud Tag Loader Code -->
-<script>
-LFM.Button.MultiButton.setup();
-LFM.Display.setMinHeight();
-</script>
-
-<div id="fb-root"></div>
-    
-    
-    <script src="http://cn.cbsimg.net/cnwk.1d/Aud/javascript/last/apex.js"></script>
-    <script>
-        var cbsiApexGlobal = {
-                    'SITE' : '190',
-                    'PTYPE' : '2000'
-                  };
-        if (typeof cbsiRunApexTargets === "function") {
-            cbsiRunApexTargets(cbsiApexGlobal, 1000);
-        }
-    </script>
-
-        
-    <script>
-    window.ClickTaleSettings = { XHRWrapper: { Enable: true} };
-    document.write(unescape("%3Cscript%20src='" +
-(document.location.protocol == 'https:' ?
-  'https://clicktalecdn.sslcs.cdngc.net/' :
-  'http://cdn.clicktale.net/') +
-"www09/ptc/220b3951-66a2-4b8e-ac35-fa58bfb30846.js'%3E%3C/script%3E"));
-
-    </script>
-    
-
-    
-        
-    </body>
-</html>
\ No newline at end of file
diff --git a/tests/fixtures/lastfm_artist_christophe.xml b/tests/fixtures/lastfm_artist_christophe.xml
deleted file mode 100644
index 892b8a67d79f37290ec91c101308a300da8efeb5..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_artist_christophe.xml
+++ /dev/null
@@ -1,339 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<lfm status="ok">
-<results for="Christophe" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
-<opensearch:Query role="request" searchTerms="Christophe" startPage="1" />
-<opensearch:totalResults>2599</opensearch:totalResults>
-<opensearch:startIndex>0</opensearch:startIndex>
-<opensearch:itemsPerPage>30</opensearch:itemsPerPage><artistmatches>
-<artist>
-    <name>Christophe Beck</name>
-                <listeners>90976</listeners>
-                <mbid>0df890e1-f4f2-4b21-a413-cd8af1af32d8</mbid>
-                        <url>http://www.last.fm/music/Christophe+Beck</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/63653215.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/63653215.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/63653215.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/63653215.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/63653215/Christophe+Beck+C+Beck.png</image>
-    </artist><artist>
-    <name>Christophe Willem</name>
-                <listeners>58796</listeners>
-                <mbid>3cb275d9-6e5b-4da4-8805-98fe758eba3f</mbid>
-                        <url>http://www.last.fm/music/Christophe+Willem</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/71205310.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/71205310.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/71205310.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/71205310.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/71205310/Christophe+Willem++PNG.png</image>
-    </artist><artist>
-    <name>Christophe Goze</name>
-                <listeners>52713</listeners>
-                <mbid>4ebfbb45-f771-4081-a47a-f13d31b89c33</mbid>
-                        <url>http://www.last.fm/music/Christophe+Goze</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/30946.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/30946.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/30946.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/30946.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/30946/Christophe+Goze.jpg</image>
-    </artist><artist>
-    <name>Christophe Maé</name>
-                <listeners>50300</listeners>
-                <mbid>48292311-c32c-41b6-af08-b7f61efd2f68</mbid>
-                        <url>http://www.last.fm/music/Christophe+Ma%C3%A9</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/50828927.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/50828927.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/50828927.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/50828927.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/50828927/Christophe+Ma+On+trace+la+route.png</image>
-    </artist><artist>
-    <name>Christophe</name>
-                <listeners>47260</listeners>
-                <mbid>5cef1748-13f1-4155-b9f6-71cd4212b960</mbid>
-                        <url>http://www.last.fm/music/Christophe</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/44611277.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/44611277.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/44611277.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/44611277.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/44611277/Christophe+6.jpg</image>
-    </artist><artist>
-    <name>Christophe Beck &amp; Mark Kilian</name>
-                <listeners>6333</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Beck+&amp;+Mark+Kilian</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/92328637.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/92328637.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/92328637.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/92328637.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/92328637/Christophe+Beck++Mark+Kilian+PNG.png</image>
-    </artist><artist>
-    <name>Christophe Rousset</name>
-                <listeners>5546</listeners>
-                <mbid>6784a34f-3d91-45a5-b7b3-be1eaa1096f1</mbid>
-                        <url>http://www.last.fm/music/Christophe+Rousset</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/4629857.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/4629857.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/4629857.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/4629857.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/4629857/Christophe+Rousset+RoussetChristophe22.jpg</image>
-    </artist><artist>
-    <name>Christophe Heral</name>
-                <listeners>5494</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Heral</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/40345469.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/40345469.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/40345469.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/40345469.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/40345469/Christophe+Heral+heral.jpg</image>
-    </artist><artist>
-    <name>Bernard Girard Christophe</name>
-                <listeners>4281</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Bernard+Girard+Christophe</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/50442703.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/50442703.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/50442703.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/50442703.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/50442703/Bernard+Girard+Christophe+Ber.png</image>
-    </artist><artist>
-    <name>Christophe Miossec &amp; Dominique A.</name>
-                <listeners>4156</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Miossec+&amp;+Dominique+A.</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/23744123.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/23744123.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/23744123.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/23744123.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/23744123/Christophe+Miossec++Dominique+A+yanntiersencvr0605.jpg</image>
-    </artist><artist>
-    <name>Christophe Mali</name>
-                <listeners>3650</listeners>
-                <mbid>8da008ad-62c2-4cd6-8be9-481f8409fbc6</mbid>
-                        <url>http://www.last.fm/music/Christophe+Mali</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/288705.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/288705.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/288705.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/288705.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/288705/Christophe+Mali.jpg</image>
-    </artist><artist>
-    <name>Jean-Christophe Spinosi</name>
-                <listeners>3636</listeners>
-                <mbid>71834a97-d085-468a-bfdb-7ad8064f3d95</mbid>
-                        <url>http://www.last.fm/music/Jean-Christophe+Spinosi</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/28616319.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/28616319.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/28616319.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/28616319.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/28616319/JeanChristophe+Spinosi+Spinosi.jpg</image>
-    </artist><artist>
-    <name>Christophe Fellay</name>
-                <listeners>3052</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Fellay</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/27351847.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/27351847.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/27351847.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/27351847.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/27351847/Christophe+Fellay+Chris.jpg</image>
-    </artist><artist>
-    <name>Bruno Coulais, Choir Of The Hungarian National Radio, Christophe Grindel, Hungrarian Symphony Orchestra Budapest &amp; Laurent Petitgirard</name>
-                <listeners>3121</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Bruno+Coulais,+Choir+Of+The+Hungarian+National+Radio,+Christophe+Grindel,+Hungrarian+Symphony+Orchestra+Budapest+&amp;+Laurent+Petitgirard</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/24106487.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/24106487.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/24106487.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/24106487.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/24106487/Bruno+Coulais+Choir+Of+The+Hungarian+National+Radi+BrunoCoulaisTheChildrensChoirO.jpg</image>
-    </artist><artist>
-    <name>Christophe Frutuoso</name>
-                <listeners>2864</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Frutuoso</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/3799099.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/3799099.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/3799099.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/3799099.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/3799099/Christophe+Frutuoso+Image3.jpg</image>
-    </artist><artist>
-    <name>Christophe Coin</name>
-                <listeners>2836</listeners>
-                <mbid>11c3fa86-9930-4745-98ef-148fdae2f271</mbid>
-                        <url>http://www.last.fm/music/Christophe+Coin</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/47460265.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/47460265.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/47460265.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/47460265.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/47460265/Christophe+Coin+Coin.jpg</image>
-    </artist><artist>
-    <name>Christophe Beck;Cantus</name>
-                <listeners>2800</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Beck;Cantus</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Christophe Héral, Billy Martin</name>
-                <listeners>2622</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+H%C3%A9ral,+Billy+Martin</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/76287490.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/76287490.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/76287490.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/76287490.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/76287490/Christophe+Hral+Billy+Martin+cover.png</image>
-    </artist><artist>
-    <name>Christophe Héral</name>
-                <listeners>2350</listeners>
-                <mbid>33e55647-575b-4b0b-8d1b-dc74f70fe5e0</mbid>
-                        <url>http://www.last.fm/music/Christophe+H%C3%A9ral</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/75626418.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/75626418.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/75626418.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/75626418.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/75626418/Christophe+Hral.png</image>
-    </artist><artist>
-    <name>Christophe Bukudjian</name>
-                <listeners>2313</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Bukudjian</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Christophe Beck &amp; Frode Fjellheim</name>
-                <listeners>2351</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Beck+&amp;+Frode+Fjellheim</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/98066897.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/98066897.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/98066897.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/98066897.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/98066897/Christophe+Beck++Frode+Fjellheim+Disney++Frozen.png</image>
-    </artist><artist>
-    <name>Frode Fjellheim &amp; Christophe Beck</name>
-                <listeners>2349</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Frode+Fjellheim+&amp;+Christophe+Beck</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/98066865.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/98066865.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/98066865.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/98066865.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/98066865/Frode+Fjellheim++Christophe+Beck+Disney++Frozen.png</image>
-    </artist><artist>
-    <name>Philippe Jaroussky/Ensemble Matheus /Jean-Christophe Spinosi</name>
-                <listeners>2295</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Philippe+Jaroussky%2FEnsemble+Matheus+%2FJean-Christophe+Spinosi</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/13916923.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/13916923.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/13916923.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/13916923.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/13916923/Philippe+JarousskyEnsemble+Matheus+JeanChristophe++JarousskyPhilippe02.jpg</image>
-    </artist><artist>
-    <name>Christophe Charles</name>
-                <listeners>2117</listeners>
-                <mbid>2c01d7c0-3c06-4f9b-808b-d78ed9672781</mbid>
-                        <url>http://www.last.fm/music/Christophe+Charles</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/147448.png</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/147448.png</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/147448.png</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/147448.png</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/147448/Christophe+Charles.png</image>
-    </artist><artist>
-    <name>Pompon Finkelstein And Christophe Couderc</name>
-                <listeners>1673</listeners>
-                <mbid>65ce7d95-64a9-41d2-aaec-5a36311fdd1a</mbid>
-                        <url>http://www.last.fm/music/Pompon+Finkelstein+And+Christophe+Couderc</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Joss Whedon &amp; Christophe Beck</name>
-                <listeners>1502</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Joss+Whedon+&amp;+Christophe+Beck</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Christophe Beck;Frode Fjellheim</name>
-                <listeners>1447</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Christophe+Beck;Frode+Fjellheim</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Frode Fjellheim, Christophe Beck</name>
-                <listeners>1346</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Frode+Fjellheim,+Christophe+Beck</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Christophe Fontana</name>
-                <listeners>1252</listeners>
-                <mbid>1d2a43bb-1cbf-4890-ab5e-8cb95ca753b0</mbid>
-                        <url>http://www.last.fm/music/Christophe+Fontana</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/57998287.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/57998287.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/57998287.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/57998287.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/57998287/Christophe+Fontana+Chris+Fontana+2.jpg</image>
-    </artist><artist>
-    <name>Momo &amp; Christophe Goze</name>
-                <listeners>1061</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Momo+&amp;+Christophe+Goze</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist></artistmatches>
-</results></lfm>
diff --git a/tests/fixtures/lastfm_artist_rage_machine.html b/tests/fixtures/lastfm_artist_rage_machine.html
deleted file mode 100644
index 196470736fb1f63ac1374059bafeed97da382dc1..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_artist_rage_machine.html
+++ /dev/null
@@ -1,829 +0,0 @@
-<!DOCTYPE html>
-<html lang="fr" class="no-js lastfm" data-ad-zone="userstore:userstore:images">
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" />
-    <link rel="profile" href="http://purl.org/uF/2008/03/" />
-        <!–[if IE]><![endif]–>
-
-                <title>                        Photos de Rage Against the Machine 
-                 – Last.fm</title>    
-        <script>(function(e) { e.className = e.className.replace(/\bno-js\b/,'js'); })(document.documentElement)</script>
-
-    <link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch.xml" title="Last.fm" />
-            <meta name="description" content="Regardez des vidéos et écoutez gratuitement Rage Against the Machine: Killing in the Name, Bulls on Parade &amp;amp; plus et 113 images. Rage Against the Machine (alias Rage ou RATM) créé en 1990 à Los Angeles. Est un groupe mélangeant le rock, le rap et le funk, originaire des États-Unis formé en 1990 par Tom Morello et Zack de La Rocha. Avec l&amp;#8217;arrivée en renfort de Tim Commerford et Brad Wilk, le groupe va marquer les années 1990 jusqu&amp;#8217;à sa dissolution en 2000. Le groupe se reforme à nouveau en janvier pour le festival de Coachella 2007, soit un an avant les élections présidentielles américaines. Le groupe se caractérise principalement par la rythmique des paroles signées de La Rocha, les effets de guitare de Morello et les prises de position politique dans et en-dehors de la sphère musicale (contre le racisme, le capitalisme et la mondialisation). Découvrez de la musique, des concerts, des vidéos et des images grâce au catalogue online Last.fm."/>
-
-
-            <meta name="robots" content="NOODP" />
-
-        
-                <meta property="og:site_name" content="Last.fm" />
-<meta property="fb:app_id" content="192959324047861" />
-
-            
-                        
-    <meta property="og:title" content="Rage Against the Machine" />
-    <meta property="og:url" content="http://www.lastfm.fr/music/Rage+Against+the+Machine" />
-    <meta property="og:image" content="http://userserve-ak.last.fm/serve/126/380903.jpg" />
-
-    
-            <meta property="og:type" content="band" />    
-                <link rel="shortcut icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
-        <link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
-    
-        <meta name="msapplication-TileImage" content="http://cdn.last.fm/flatness/lastfm_win8_tile_144.png" />
-    <meta name="msapplication-TileColor" content="#d51007" />
-    
-        <meta name="apple-itunes-app" content="app-id=585235199">
-
-    
-    
-    
-                <link rel="alternate" hreflang="en" href="http://www.last.fm/music/Rage+Against+the+Machine/+images" />
-    
-            <link rel="alternate" hreflang="de" href="http://www.lastfm.de/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="es" href="http://www.lastfm.es/music/Rage+Against+the+Machine/+images" />
-                        <link rel="alternate" hreflang="it" href="http://www.lastfm.it/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="ja" href="http://www.lastfm.jp/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="pl" href="http://www.lastfm.pl/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="pt" href="http://www.lastfm.com.br/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="ru" href="http://www.lastfm.ru/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="sv" href="http://www.lastfm.se/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/music/Rage+Against+the+Machine/+images" />
-                <link rel="alternate" hreflang="zh" href="http://cn.last.fm/music/Rage+Against+the+Machine/+images" />
-        
-    
-        <style>html {zoom: 1;}</style>    <script>
-
-        if(top !== self && top.location.domain !== self.location.domain) {
-            (function(d, s) {
-                if(s && s.insertRule) {
-                    s.insertRule('body { display: none !important }', 0);
-                } else if(s && s.addRule) {
-                    s.addRule('body', 'display: none !important');
-                }
-                top.location.replace(d.location.href);
-            })(document, document.styleSheets[0]);
-        }
-</script>
-
-                                        <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/themes/whittle.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/231774/master.css" />
-                        
-        
-<!--[if lt IE 9]>
-    <script>
-
-        window.html5 = {
-            shivCSS: false
-        }
-</script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/html5shiv.js"></script>
-<![endif]-->
-
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
-<script>$.noConflict();</script>
-<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.1.0/prototype.js"></script>
-<script>
-    if(typeof Prototype === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/prototype.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>
-<script>
-    if(typeof Scriptaculous === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/231805/lib/scriptaculous/scriptaculous.js'%3E%3C/script%3E"));
-    }
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/mustache-min.js"></script>
-
-<script>SM2_DEFER = true;</script>
-<script src="http://cdn.last.fm/javascript/javascript/231805/lib/sm2-min.js"></script>
-
-<script src="http://cdn.last.fm/javascript/javascript/231805/LFM.js"></script>
-
-<script>
-    LFM.set("ParentResource", {"id":"1014421","type":6,"name":"Rage Against the Machine","url":"\/music\/Rage+Against+the+Machine","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34\/380903.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/380903.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64\/380903.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/380903.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/380903.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/380903.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/252\/380903.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/380903\/Rage+Against+the+Machine.jpg"}});
-    LFM.Adserver.showAds = true;
-    LFM.set("Session", {"cookieHost":".lastfm.fr","host":"www.lastfm.fr","staticHost":"http:\/\/cdn.last.fm","wsHost":"ws.audioscrobbler.com","userserveHost":"http:\/\/userserve-ak.last.fm","wsKey":"ceec2bb03d4c5929f0d6667fc266dc75","formtoken":"2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3","location":"fr","language":"fr","ajaxhost":"ajax.last.fm","templatePath":"\/templates\/231606","jsPath":"http:\/\/cdn.last.fm\/javascript\/javascript\/231805","cssPath":"http:\/\/cdn.last.fm\/css\/css\/231774","loggedIn":false});
-    LFM.set("resTypes", {
-        EVENT: 29,
-        ARTIST: 6,
-        ALBUM: 8,
-        TRACK: 9,
-        GROUP: 20,
-        TAG: 32,
-        USER: 4,
-        LABEL: 10
-    });
-    LFM.set("resTypeLookup", {
-        29: "Event",
-        6: "Artist",
-        8: "Album",
-        9: "Track",
-        20: "Group",
-        32: "Tag",
-        4: "User",
-        10: "Label"
-    });
-
-    LFM.set("String", {okText: "OK",cancelText: "Annuler",clickToEditText: "Cliquer pour modifier",savingText: "Enregistrement...",loadingText: "Chargement...",deletingText: "Suppression...",thereWasAnError: "Une erreur s'est produite.",dialogLoadError: "Une erreur s'est produite lors du chargement de ce dialogue.",fileTooBig: "Désolé, le fichier est trop volumineux.",noFile: "Merci de sélectionner un fichier. ",uploadCancelled: "Upload annulé",deleteMessageTitle: "Supprimer le message",deleteMessagePrompt: "Voulez-vous vraiment supprimer ce message ?",deleteFriendPrompt: "Voulez-vous vraiment supprimer cet(te) ami(e) ?",deleteImage: "Voulez-vous vraiment supprimer cette image ?",deleteButtonText: "Supprimer",done: "C'est fait",backText: "Retour",yesText: "Oui",noText: "Non",saveText: "Enregistrer ",saveTitle: "Ajouter au profil",sendText: "Envoyer",sendTitle: "Partager avec vos amis",addTitle: "Ajouter à la bibliothèque",tagTitle: "Ajouter des tags",playlistTitle: "Ajouter à la playlist",befriendTitle: "Ajouter un ami",labsfeedbackTitle: "Donnez-nous votre avis",joinTitle: "Devenir membre du groupe",loved: "Ajouté aux coups de coeur.",RemoveFromLibraryTitle: "Supprimer de la bibliothèque",uploadImageTitle: "Uploader une image",uploadVideoTitle: "Importer une vidéo",usernoteTitle: "Add a note",cleanupBioTitle: "Cleanup Bio",flageventTitle: "Signaler une erreur",setLocationTitle: "Définissez votre localisation",newWindowTooltip: "Ce lien s\'affichera dans une nouvelle fenêtre",unloadWarningMessage: "Ceci va interrompre la lecture",trackLoved: "Vous avez ajouté ce titre à vos coups de cœur",playbackStopped: "Lecture interrompue",loadingTrackInfo: "Chargement des informations sur ce  titre",errorLoadingTrackInfo: "Une erreur s'est produite lors du chargement des informations sur ce titre",emailLineup: "Envoyer par email",uploadMessages: {mayTakeLonger: "Désolé, cela risque de prendre un peu plus de temps que d'habitude. Patientez quelques instants.",uploading: "Transfert en cours...",endUploading: "C'est fait",progressDisplay: "PERCENTUPLOADED% effectués (TRANSFERRATE kb/s) – TIMEREMAINING secondes restantes",progressComplete: "100% effectués",failedRetrying: "Impossible de retrouver l'upload, annulé.",processingMedia: "Prise en charge du média...",unsupportedFormat: "Désolé, le format du fichier que vous avez uploadé n'est pas pris en charge. Réessayez.",uploadError: "Une erreur s'est produite lors du transfert de votre vidéo. Vérifiez que le fichier n'est pas trop volumineux et que son format est pris en charge, puis réessayez."},shortMonths: {'1': " jan.",'2': " fév.",'3': "mars",'4': "avr.",'5': "mai",'6': "juin",'7': "jui.",'8': "août",'9': "sept.",'10': "oct.",'11': "nov.",'12': " déc."},resTypePlural: {29: "Concerts",6: "Artistes",8: "Albums",9: "Titres",20: "Groupes",32: "Tags",4: "Utilisateurs ","friends":   "Amis",10: "Labels"}});LFM.set("Element", {icon_loved_indicator: "<img class=\"icon loved_indicator_icon\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_tag: "<img class=\"icon tag_icon\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_dismiss: "<img class=\"icon dismiss_icon\" width=\"16\" height=\"16\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_play: "<img class=\"transparent_png play_icon\" width=\"13\" height=\"13\" alt=\"\u00c9couter\" src=\"http:\/\/cdn.last.fm\/flatness\/preview\/play_indicator.png\" style=\"\" \/>"});
-        LFM.AdPlacements = ["beacon","interstitial","skin","leaderboard","relatedcontent","lowerleaderboard"];
-</script>
-
-
-<script data-main="http://cdn.last.fm/javascript/javascript/231805/modules-built/init" src="http://cdn.last.fm/javascript/javascript/231805/lib/requirejs/require-min.js"></script>
-
-    <script src="http://cdn.last.fm/javascript/javascript/231805/components.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/dialog.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/form/typeahead.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/uuid.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/231805/lib/modernizr.js"></script>
-
-<script>
-
-LFM.Page.Tracker = new LFM.Analytics.Tracker('Music/Artist/Images', window.location.host);
-
-document.observe('dom:loaded', function() {
-
-    LFM.Page.Tracker.bindOutboundLinkListener();
-    LFM.Page.Tracker.bindEventListener();
-
-});
-
-</script>
-
-
-    
-    <script>document.observe("dom:loaded", function () { if (typeof ieHover !== 'undefined') ieHover.setUp(); });</script>
-
-    <script data-require="googleanalytics">LFM.Analytics = LFM.Analytics || {};LFM.Analytics.Helpers = {webhost:"www.lastfm.fr",registrationStatus:"LoggedOut",visitorStatus: "Anonymous",artistNameString:"Rage Against the Machine",transformedUrl:"music/artist/images"}</script></head>
-
-
-
-<!--[if lt IE 7 ]> <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie6"> <![endif]-->
-<!--[if IE 7 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie7"> <![endif]-->
-<!--[if IE 8 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie8"> <![endif]-->
-<!--[if IE 9 ]>    <body class="r-artist a-images lfmRed  lang-fr theme-whittle ie ie9"> <![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <body class="r-artist a-images lfmRed  lang-fr theme-whittle" > <!--<![endif]-->
-
-        <script>var WRInitTime = +new Date();</script>
-
-    
-            <div id="page" class="page-hack"></div>        <div class=" page-wrapper">
-            
-
-<div id="LastAd_beacon" class="LastAd ad-beacon inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="beacon" data-ad-collapsible>
-    <span>     
-            <script>
-
-
-var googletag = googletag || {};
-googletag.cmd = googletag.cmd || [];
-
-(function() {
-    var useSSL = 'https:' == document.location.protocol;
-    var src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
-    document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
-})();
-
-</script>
-
-<script>
-    
-    var googleSlots = { };
-    var googleDisplayed = false;
-    
-
-    googletag.cmd.push(function() {
-        var unitName = "/8264/row-lastfm/userstore/userstore/images",
-            isVR = false,
-            isDynamic = false,
-            isAnonHome = false;
-    
-
-    function hasPlacement(placement) {
-        return LFM.AdPlacements.indexOf(placement) >= 0;
-    };
-
-    var leaderboardSizes = [[728,90],[970,66],[970,90],[860,55]];
-    // The leaderboard slot height is fixed at 90px when using dynamic ads,
-    // showing a taller leaderboard would cause the page to jump, so we don't request them
-    if ( ! isDynamic) {
-        leaderboardSizes.push([880,150],[880,170],[880,200],[900,150],[900,250],[970,200],[970,250],[860,250],[980,250]);
-    }
-    if (hasPlacement('leaderboard')) {
-        googleSlots['leader_top'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    var mpuSizes = [[300,250],[138,108]] ;
-    if (! isAnonHome) {
-        mpuSizes.push([300,600]);
-    }
-
-    var lowerMpuSizes = [[300,250]];
-
-    if (hasPlacement('mpu')) {
-        googleSlots['mpu_top'] = googletag.defineSlot(unitName, mpuSizes, "mpu_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('lowermpu')) {
-        googleSlots['mpu_bottom'] = googletag.defineSlot(unitName, lowerMpuSizes, "mpu_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('skin')) {
-        googleSlots['skin'] = googletag.defineSlot(unitName, [1600,1000], "skin")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    if (hasPlacement('interstitial')) {
-        googleSlots['intromercial'] = googletag.defineOutOfPageSlot(unitName, "intromercial")
-        .addService(googletag.pubads());
-    }
-
-    if (hasPlacement('lowerleaderboard')) {
-        googleSlots['leader_bottom'] = googletag.defineSlot(unitName, leaderboardSizes, "leader_bottom")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "bottom");
-    }
-
-    if (hasPlacement('sky')) {
-        googleSlots['sky_top'] = googletag.defineSlot(unitName, [160,600], "sky_top")
-        .addService(googletag.pubads())
-        .setTargeting("pos", "top");
-    }
-
-    // Collapse as soon as display() for the slot is reached and expand only when there is an ad
-    // i.e. no flickering
-    googletag.pubads().collapseEmptyDivs(true);
-
-    if ( ! isVR) {
-        googletag.pubads().enableSingleRequest();    
-
-        if ( ! isDynamic) {
-            googletag.pubads().enableSyncRendering();    
-        }
-    }
-
-    if (screen.width >= 1280) {
-        googletag.pubads().setTargeting("inskin", "yes");
-    }
-
-    
-
-            googletag.pubads().setTargeting("ar", "rageagainstthemachine,audioslave,limpbizkit,onedayasalion,korn,tool,systemofadown,redhotchilipeppers,deftones,soundgarden,p.o.d.");
-            googletag.pubads().setTargeting("tag", "rock,alternativerock,alternative,political,metal,rapcore,hardrock,alternativemetal,crossover,rapmetal");
-            googletag.pubads().setTargeting("geo", "FR");
-            googletag.pubads().setTargeting("lang", "fr");
-            googletag.pubads().setTargeting("res", "1014421");
-            googletag.pubads().setTargeting("established", "1");
-    
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    googletag.pubads().setTargeting("viewguid", LFM.viewGuid);
-
-    googletag.enableServices();
-    
-
-  });
-
-</script>        
-    </span>
-</div>
-    <div id="LastAd_interstitial" class="LastAd ad-interstitial inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="interstitial" data-ad-collapsible>
-    <span>     
-            <div id="intromercial">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("intromercial"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_skin" class="LastAd ad-skin inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="skin" data-ad-collapsible>
-    <span>     
-            <div id="skin">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("skin"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-    <div id="LastAd_leaderboard" class="LastAd ad-leaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="leaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_top">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_top"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-<div class="masthead-wrapper">
-
-    
-    
-                
-    <header class="masthead" role="banner">
-        <h1>
-            <a href="/" class="ir lastfm-logo">
-                Last.fm
-            </a>
-        </h1>
-
-        <form
-            class="
-                site-search
-                search-autocomplete
-                search-autocomplete--main
-            "
-            method="get"
-            action="/search"
-            role="search"
-            data-require="search/sitesearch"
-            data-template="search"
-            data-url="/search/autocomplete"
-                    >
-            <fieldset>
-                <legend class="rm">Rechercher sur le site</legend>
-                <input type="text" name="q" autocorrect="off" autocomplete="off" placeholder="Recherche de musique" size="26" class="js-search search-box" />
-                <div class="js-search-progress search-progress ir">En chargement</div>
-                <input type="hidden" name="from" value="ac" />
-                <button type="submit" class="search-submit icon iconleft iconleft--search" title="Recherche"></button>
-            </fieldset>
-        </form>
-
-        <nav role="navigation">
-            <ul class="primary-nav remove-bottom-margin">
-                <li class="primary-nav-item">
-                    <a href="/music" class="primary-nav-link">Musique</a>
-                </li>
-                <li id="listenNav" class="primary-nav-item">
-                    <a href="/listen" class="primary-nav-link">Écouter</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/events" class="primary-nav-link">Concerts</a>
-                </li>
-                <li class="primary-nav-item">
-                    <a href="/charts" class="primary-nav-link">Charts</a>
-                </li>
-                                            </ul>
-
-            <div class="masthead-right" role="navigation">
-                                    <a href="/join" class="join" data-analytics-action="SignUpClick" data-analytics-label="Header">Rejoignez-nous</a>
-                    <a href="/login" id="login-link" class="btn btn--small btn--header btn--rounded login">Connexion</a>
-                            </div>
-        </nav>
-    </header>
-        
-    <link rel="stylesheet" type="text/css" href="//embed.spotify.com/static/css/mediabar/mediabar-lastfm.css" />
-<div class="persistent-bar">
-    <div class="spotify-mediabar-wrapper">
-        <div id="spotify-mediabar" class="spotify-mediabar" data-require="spotify/spotifymediabar"></div>
-    </div>
-    <a href="#" class="spotify-mediabar-feedback" data-require="labfeedbackbutton" data-lab-name="spotifyplayback">
-        <span class="beta-badge">Bêta</span> Avis
-    </a>
-</div>
-<div id="spotify-signup-complete-modal" data-require="spotify/signupcompletemodal">
-    <div class="sparse-modal js-modal"></div>
-</div>
-    </div>
-
-
-<div class="content">
-        <header class="    page-head
-    with-crumbtrail
-    with-image
-    clearit
-">
-            <div class="crumb-wrapper">
-            <div class="top-crumb">
-                <a href="/music/Rage+Against+the+Machine"    >                    <img class="crumb-image" src="http://userserve-ak.last.fm/serve/64s/380903.jpg" alt="Miniature de Rage Against the Machine" width="60" height="60" />
-            Rage Against the Machine</a>            </div>
-                <h1 >
-        Images    </h1>
-
-        </div>
-    
-    <nav class="secondary-nav" role="navigation" data-require="secondarynav">
-        <ul class="visible-menu">
-            <li class=" first "><a href="/music/Rage+Against+the+Machine/+tracks">Titres</a></li>        <li><a href="/music/Rage+Against+the+Machine/+albums">Albums</a></li>
-                <li class=" current "><a href="/music/Rage+Against+the+Machine/+images">Images</a></li>        
-                <li><a href="/music/Rage+Against+the+Machine/+videos">Vidéos</a></li>        
-        <li><a href="/music/Rage+Against+the+Machine/+events">Concerts</a></li>
-                    <li><a href="/music/Rage+Against+the+Machine/+wiki">Biographie</a></li>        
-        <li><a href="/music/Rage+Against+the+Machine/+similar">Artistes similaires</a></li>        <li><a href="/music/Rage+Against+the+Machine/+charts">Charts</a></li>        <li><a href="/music/Rage+Against+the+Machine/+tags">Tags</a></li>        <li><a href="/music/Rage+Against+the+Machine/+listeners">Auditeurs</a></li>        <li><a href="/music/Rage+Against+the+Machine/+journal">Articles</a></li>        <li><a href="/music/Rage+Against+the+Machine/+news">Actualités</a></li>        <li><a href="/music/Rage+Against+the+Machine/+groups">Groupes</a></li>    
-</ul>    <div class="drop-down-menu more">
-    <a href="#" class="menu-toggle">Plus...</a>
-    <ul class="hidden-menu"></ul>
-</div></nav></header>
-    
-        <nav class="r add-bottom-margin">
-            <div class="g6">
-                <ul class="toggle-list add-right-margin"><li class="toggle-list-current"><span class="btn btn--small btn--toggle-left btn--brand-blue is-pressed">Populaire</span></li><li><a href="/music/Rage+Against+the+Machine/+images?sort=date" class="btn btn--small btn--toggle-right">Nouvelles images</a></li></ul>
-                    
-            </div>
-            <div class="g6">
-                <div class="whittle-pagination"><span class="btn btn--small whittle-pagination-selected">1</span><a href="/music/Rage+Against+the+Machine/+images?page=2" class="btn btn--small btn--white">2</a><span>…</span><a href="/music/Rage+Against+the+Machine/+images?page=4" class="btn btn--small btn--white">4</a><a href="/music/Rage+Against+the+Machine/+images?page=2" class="btn btn--icon-only btn--small btn--white iconright iconright--right" rel="next" title="Next page">Suivant</a></div>            </div>
-        </nav>
-
-
-        
-        <ul id="pictures" class="pictures clearit">
-    <li id="r50_380903_1661195578" data-res-id="380903" class="img-380903 first">
-                                            <a href="/music/Rage+Against+the+Machine/+images/380903"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  17 avr. 2007" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/380903.jpg" />        </a>        </li><li id="r50_71486_1011539736" data-res-id="71486" class="img-71486">
-                                            <a href="/music/Rage+Against+the+Machine/+images/71486"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  5 mai 2007 par BS1der" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/71486.jpg" />        </a>        </li><li id="r50_15858837_1802577710" data-res-id="15858837" class="img-15858837">
-                                            <a href="/music/Rage+Against+the+Machine/+images/15858837"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  2 nov. 2008 par pat456" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/15858837.jpg" />        </a>        </li><li id="r50_12970697_767414041" data-res-id="12970697" class="img-12970697">
-                                            <a href="/music/Rage+Against+the+Machine/+images/12970697"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  1 oct. 2008 par emajlos" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/12970697.jpg" />        </a>        </li><li id="r50_3519089_67804455" data-res-id="3519089" class="img-3519089">
-                                            <a href="/music/Rage+Against+the+Machine/+images/3519089"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  16  déc. 2007 par pat456" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/3519089.jpg" />        </a>        </li><li id="r50_348946_636080848" data-res-id="348946" class="img-348946">
-                                            <a href="/music/Rage+Against+the+Machine/+images/348946"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  14  fév. 2007" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/348946.jpg" />        </a>        </li><li id="r50_328607_2010362567" data-res-id="328607" class="img-328607">
-                                            <a href="/music/Rage+Against+the+Machine/+images/328607"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  15 août 2006 par travis714" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/328607.jpg" />        </a>        </li><li id="r50_8049729_1547167676" data-res-id="8049729" class="img-8049729">
-                                            <a href="/music/Rage+Against+the+Machine/+images/8049729"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  16 jui. 2008 par even_deeper3" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/8049729.jpg" />        </a>        </li><li id="r50_6312627_1013783154" data-res-id="6312627" class="img-6312627">
-                                            <a href="/music/Rage+Against+the+Machine/+images/6312627"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  5 juin 2008 par Sickman82" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/6312627.jpg" />        </a>        </li><li id="r50_40646597_1727292660" data-res-id="40646597" class="img-40646597">
-                                            <a href="/music/Rage+Against+the+Machine/+images/40646597"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  14  jan. 2010 par BadMotherF-cker" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/40646597.jpg" />        </a>        </li><li id="r50_2583198_175779333" data-res-id="2583198" class="img-2583198">
-                                            <a href="/music/Rage+Against+the+Machine/+images/2583198"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  30 sept. 2007 par Rudy_Rules" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/2583198.jpg" />        </a>        </li><li id="r50_11970637_1644012102" data-res-id="11970637" class="img-11970637">
-                                            <a href="/music/Rage+Against+the+Machine/+images/11970637"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  16 sept. 2008 par Nemesis7840" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/11970637.jpg" />        </a>        </li><li id="r50_394553_724492681" data-res-id="394553" class="img-394553">
-                                            <a href="/music/Rage+Against+the+Machine/+images/394553"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  28 mars 2006 par Dead_bird" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/394553.jpg" />        </a>        </li><li id="r50_10796889_1367212830" data-res-id="10796889" class="img-10796889">
-                                            <a href="/music/Rage+Against+the+Machine/+images/10796889"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  28 août 2008 par destricted" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/10796889.jpg" />        </a>        </li><li id="r50_135361_650990901" data-res-id="135361" class="img-135361">
-                                            <a href="/music/Rage+Against+the+Machine/+images/135361"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  26 oct. 2006 par ghozza" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/135361.jpg" />        </a>        </li><li id="r50_22410619_60750633" data-res-id="22410619" class="img-22410619">
-                                            <a href="/music/Rage+Against+the+Machine/+images/22410619"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  25  jan. 2009 par Drummle91" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/22410619.jpg" />        </a>        </li><li id="r50_123297_1989842689" data-res-id="123297" class="img-123297">
-                                            <a href="/music/Rage+Against+the+Machine/+images/123297"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  15 mai 2007 par bckman" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/123297.jpg" />        </a>        </li><li id="r50_73265_516875499" data-res-id="73265" class="img-73265">
-                                            <a href="/music/Rage+Against+the+Machine/+images/73265"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  26  jan. 2006 par die_by_TheSword" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/73265.jpg" />        </a>        </li><li id="r50_70627_502925651" data-res-id="70627" class="img-70627">
-                                            <a href="/music/Rage+Against+the+Machine/+images/70627"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  11 mai 2007" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/70627.gif" />        </a>        </li><li id="r50_114764_241653639" data-res-id="114764" class="img-114764">
-                                            <a href="/music/Rage+Against+the+Machine/+images/114764"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  21 oct. 2006 par QbSon" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/114764.jpg" />        </a>        </li><li id="r50_103_687910098" data-res-id="103" class="img-103">
-                                            <a href="/music/Rage+Against+the+Machine/+images/103"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  15 nov. 2005 par RJ" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/103.jpg" />        </a>        </li><li id="r50_4280498_1437442069" data-res-id="4280498" class="img-4280498">
-                                            <a href="/music/Rage+Against+the+Machine/+images/4280498"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  8  fév. 2008 par M-A-T-Z-E" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/4280498.jpg" />        </a>        </li><li id="r50_256046_1515282917" data-res-id="256046" class="img-256046">
-                                            <a href="/music/Rage+Against+the+Machine/+images/256046"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  24 sept. 2006 par ____nah" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/256046.jpg" />        </a>        </li><li id="r50_4280453_180249480" data-res-id="4280453" class="img-4280453">
-                                            <a href="/music/Rage+Against+the+Machine/+images/4280453"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  8  fév. 2008 par M-A-T-Z-E" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/4280453.jpg" />        </a>        </li><li id="r50_321316_45005453" data-res-id="321316" class="img-321316">
-                                            <a href="/music/Rage+Against+the+Machine/+images/321316"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  4 avr. 2007 par BS1der" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/321316.jpg" />        </a>        </li><li id="r50_382647_1990611458" data-res-id="382647" class="img-382647">
-                                            <a href="/music/Rage+Against+the+Machine/+images/382647"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  22 avr. 2007 par bckman" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/382647.jpg" />        </a>        </li><li id="r50_42116_470073636" data-res-id="42116" class="img-42116">
-                                            <a href="/music/Rage+Against+the+Machine/+images/42116"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  5 mai 2007 par BS1der" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/42116.jpg" />        </a>        </li><li id="r50_25043893_544567937" data-res-id="25043893" class="img-25043893">
-                                            <a href="/music/Rage+Against+the+Machine/+images/25043893"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  7 mars 2009" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/25043893.jpg" />        </a>        </li><li id="r50_11317111_186683553" data-res-id="11317111" class="img-11317111">
-                                            <a href="/music/Rage+Against+the+Machine/+images/11317111"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  8 sept. 2008 par jacobbrett" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/11317111.jpg" />        </a>        </li><li id="r50_76595_1887108725" data-res-id="76595" class="img-76595">
-                                            <a href="/music/Rage+Against+the+Machine/+images/76595"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  6 sept. 2006" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/76595.jpg" />        </a>        </li><li id="r50_39866699_773626906" data-res-id="39866699" class="img-39866699">
-                                            <a href="/music/Rage+Against+the+Machine/+images/39866699"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  28  déc. 2009 par riinhere" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/39866699.jpg" />        </a>        </li><li id="r50_160805_1002377286" data-res-id="160805" class="img-160805">
-                                            <a href="/music/Rage+Against+the+Machine/+images/160805"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  6 jui. 2006" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/160805.jpg" />        </a>        </li><li id="r50_52884315_872666079" data-res-id="52884315" class="img-52884315">
-                                            <a href="/music/Rage+Against+the+Machine/+images/52884315"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  10 oct. 2010 par ShiryuROXALOTq" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/52884315.jpg" />        </a>        </li><li id="r50_16222071_113439050" data-res-id="16222071" class="img-16222071">
-                                            <a href="/music/Rage+Against+the+Machine/+images/16222071"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  6 nov. 2008 par Fade_Machine" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/16222071.jpg" />        </a>        </li><li id="r50_69798428_656058678" data-res-id="69798428" class="img-69798428">
-                                            <a href="/music/Rage+Against+the+Machine/+images/69798428"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  11 oct. 2011 par smee85" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/69798428.png" />        </a>        </li><li id="r50_39866713_1946321837" data-res-id="39866713" class="img-39866713 last">
-                                            <a href="/music/Rage+Against+the+Machine/+images/39866713"     class="pic">            <img alt="Vignette de Rage Against the Machine" title="Ajoutée  28  déc. 2009 par riinhere" class=" rounded" width="126" src="http://userserve-ak.last.fm/serve/126s/39866713.jpg" />        </a>        </li>
-</ul>
-        
-        <div id="LastAd_relatedcontent" class="LastAd ad-relatedcontent inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="relatedcontent" data-ad-collapsible>
-    <span>     
-                    
-    </span>
-</div>
-        <nav>
-            <div class="whittle-pagination"><span class="btn btn--small whittle-pagination-selected">1</span><a href="/music/Rage+Against+the+Machine/+images?page=2" class="btn btn--small btn--white">2</a><span>…</span><a href="/music/Rage+Against+the+Machine/+images?page=4" class="btn btn--small btn--white">4</a><a href="/music/Rage+Against+the+Machine/+images?page=2" class="btn btn--icon-only btn--small btn--white iconright iconright--right" rel="next" title="Next page">Suivant</a></div>        </nav>
-
-    </div>
-
-<div id="LastAd_lowerleaderboard" class="LastAd ad-lowerleaderboard inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="lowerleaderboard" data-ad-collapsible>
-    <span>     
-            <div id="leader_bottom">
-    <script>
-        googletag.cmd.push(function() {
-            googletag.display("leader_bottom"); 
-        });
-    </script>
-</div>        
-    </span>
-</div>
-
-                            <footer role="banner" class="site-footer">
-    <nav class="site-footer-nav">
-        <div class="r add-bottom-margin">
-            <a href="/uploadmusic" class="g call-to-action call-to-action--upload" data-analytics-action="FooterClick" data-analytics-label="Artists and Labels">
-                <h2>Artistes et labels</h2>
-                <p>Entrez en contact avec vos fans en téléchargeant votre musique sur Music Manager</p>
-            </a>
-            <a href="/download" class="g call-to-action call-to-action--download" data-analytics-action="FooterClick" data-analytics-label="Download Desktop App">
-                <h2>Télécharger nos apps</h2>
-                <p>Profitez des apps Last.fm pour bureau et portable, et commencez à scrobbler</p>
-            </a>
-        </div>
-        <hr class="separator" />
-        <ul class="r add-bottom-margin">
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Société</h2>
-                <a href="#show-company" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Société</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/about" data-analytics-action="FooterClick" data-analytics-label="About us">Qui sommes-nous ? </a></li>
-                    <li><a href="/about/contact" data-analytics-action="FooterClick" data-analytics-label="Contact us">Nous contacter</a></li>
-                    <li><a href="/about/jobs" data-analytics-action="FooterClick" data-analytics-label="Jobs">Offres d'emploi</a></li>
-                    <li><a href="http://blog.last.fm" data-analytics-action="FooterClick" data-analytics-label="Blog">Blog</a></li>
-                    <li><a href="/advertise" data-analytics-action="FooterClick" data-analytics-label="Advertise">Publicité</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Communauté</h2>
-                <a href="#show-join" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Communauté</h2>
-                </a>
-                <ul class="toggle-target">
-                                        <li><a href="/join" data-analytics-action="FooterClick" data-analytics-label="Sign up">S'inscrire</a></li>
-                    <li><a href="/community/users" data-analytics-action="FooterClick" data-analytics-label="Find people">Trouver des utilisateurs</a></li>
-                                        <li><a href="/community/groups" data-analytics-action="FooterClick" data-analytics-label="Find groups">Trouver des groupes</a></li>
-                    <li><a href="/community" data-analytics-action="FooterClick" data-analytics-label="Community">Communauté</a></li>
-                    <li><a href="/forum" data-analytics-action="FooterClick" data-analytics-label="Forums">Forums</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Cadeaux</h2>
-                <a href="#show-goodies" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Cadeaux</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/hardware" data-analytics-action="FooterClick" data-analytics-label="More apps">Plus d'apps et d'appareils</a></li>
-                    <li><a href="/api" data-analytics-action="FooterClick" data-analytics-label="Last.fm API">API développeur </a></li>
-                    <li><a href="http://build.last.fm" data-analytics-action="FooterClick" data-analytics-label="Tools, plugins & more">Outils et plug-ins</a></li>
-                    <li><a href="http://playground.last.fm" data-analytics-action="FooterClick" data-analytics-label="Playground">Playground</a></li>
-                    <li><a href="/music/+free-music-downloads" data-analytics-action="FooterClick" data-analytics-label="Free music downloads">Téléchargements de musique gratuits</a></li>
-                </ul>
-                <hr class="separator" role="presentation" />
-            </li>
-            <li class="g g--padded site-footer-nav-group toggle-container" data-require="toggle">
-                <h2>Aide</h2>
-                <a href="#show-help" class="conditional-footer-toggle js-toggle">
-                    <h2 class="iconright iconright--dropdown">Aide</h2>
-                </a>
-                <ul class="toggle-target">
-                    <li><a href="/help" data-analytics-action="FooterClick" data-analytics-label="Help & support">Aide et assistance</a></li>
-                    <li><a href="http://status.last.fm/" data-analytics-action="FooterClick" data-analytics-label="System status">État du système</a></li>
-                                    </ul>
-            </li>
-        </ul>
-    </nav>
-    <hr class="separator" />
-                <nav role="navigation" class="language-selector clearit toggle-container" id="change-language" data-require="toggle">
-        <h2 class="rm">Langues :</h2>
-        <ul class="inline-items inline-items--dotted">
-            <li class="current-language">
-                <strong class="current-language-text iconleft iconleft--globe">
-                    Français
-                    <span class="rm">(langue actuelle)</span>
-                </strong>
-                <a href="#show-languages" class="iconleft iconleft--globe iconright iconright--dropdown language-toggle js-toggle">
-                    <strong>Français</strong><span class="rm">(langue actuelle) - Changer de langue</span>
-                </a>
-            </li>
-            <li class="language-options toggle-target">
-                <ul class="language-options-group">
-                                            <li class="language-option">
-                            <a
-                                href="http://www.last.fm/music/Rage+Against+the+Machine/+images?setlang=en"
-                                rel="alternate"
-                                hreflang="en"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > en"
-                            >English</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.de/music/Rage+Against+the+Machine/+images?setlang=de"
-                                rel="alternate"
-                                hreflang="de"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > de"
-                            >Deutsch</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.es/music/Rage+Against+the+Machine/+images?setlang=es"
-                                rel="alternate"
-                                hreflang="es"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > es"
-                            >Español</a>
-                        </li>
-                                                                                                                            <li class="language-option">
-                            <a
-                                href="http://www.lastfm.it/music/Rage+Against+the+Machine/+images?setlang=it"
-                                rel="alternate"
-                                hreflang="it"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > it"
-                            >Italiano</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.jp/music/Rage+Against+the+Machine/+images?setlang=jp"
-                                rel="alternate"
-                                hreflang="ja"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > jp"
-                            >日本語</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.pl/music/Rage+Against+the+Machine/+images?setlang=pl"
-                                rel="alternate"
-                                hreflang="pl"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pl"
-                            >Polski</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.br/music/Rage+Against+the+Machine/+images?setlang=pt"
-                                rel="alternate"
-                                hreflang="pt"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > pt"
-                            >Português</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.ru/music/Rage+Against+the+Machine/+images?setlang=ru"
-                                rel="alternate"
-                                hreflang="ru"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > ru"
-                            >Руccкий</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.se/music/Rage+Against+the+Machine/+images?setlang=sv"
-                                rel="alternate"
-                                hreflang="sv"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > sv"
-                            >Svenska</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://www.lastfm.com.tr/music/Rage+Against+the+Machine/+images?setlang=tr"
-                                rel="alternate"
-                                hreflang="tr"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > tr"
-                            >Türkçe</a>
-                        </li>
-                                                                                    <li class="language-option">
-                            <a
-                                href="http://cn.last.fm/music/Rage+Against+the+Machine/+images?setlang=zh"
-                                rel="alternate"
-                                hreflang="zh"
-                                data-analytics-action="LanguageSelectorLanguageSelected"
-                                data-analytics-label="en:fr|www.lastfm.fr > zh"
-                            >简体中文</a>
-                        </li>
-                                                        </ul>
-            </li>
-        </ul>
-        <hr class="separator" />
-    </nav>
-
-     
-<div class="site-footer-legalese">
-    <blockquote class="site-footer-strapline">“Does You Does, or Does You Don't Take Last.fm?”</blockquote>
-    <ul class="inline-items inline-items--dotted">
-        <li>
-            <a href="http://www.cbsinteractive.com">CBS Interactive</a> &copy; 2014 Last.fm Ltd.         </li>
-        <li>
-            <a href="/legal/terms" data-analytics-action="FooterClick" data-analytics-label="Terms of Use">Conditions d'utilisation</a>, 
-                    <a href="/legal/privacy" data-analytics-action="FooterClick" data-analytics-label="Privacy Policy">Politique de confidentialité</a> et 
-         <a href="/legal" data-analytics-action="FooterClick" data-analytics-label="Legal">Politiques juridiques</a> — <span class="date">Dernière mise à jour : 26 nov. 2013</span>
-        </li>
-        <li>
-            <a href="http://www.gamespot.com">Gamespot</a>
-        </li>
-    </ul>
-        </div></footer>                    </div>
-    
-    <div id="multiButtonMenu" style="display: none;">
-    <div>
-        <ul class="lfmDropDownBody">
-            <li class="mAddToLibrary"><a href="#">Ajouter à ma bibliothèque</a></li>
-            <li class="mAddToFriends"><a href="#">Ajouter à la liste d'amis</a></li>
-            
-            <!-- <li class="save"><a href="#">Ajouter aux favoris</a></li> -->
-            <li class="mSend"><a href="#">Partager</a></li>
-            
-            <li class="mLove"><a href="#">Ajouter à mes coups de cœur</a></li>
-            <li class="mUnlove"><a href="#">Retirer des coups de cœur</a></li>
-            <li class="mBan"><a href="#">Bannir ce titre</a></li>
-            <li class="mUnban"><a href="#">Annuler le bannissement de ce titre</a></li>
-
-            <li class="mAddTags"><a href="#">Ajouter des tags</a></li>
-            <li class="mAddToPlaylist"><a href="#">Ajouter à la playlist</a></li>
-            
-            <li class="mRemoveFromLibrary"><a href="#">Supprimer de la bibliothèque</a></li>
-            
-            <li class="mBuy"><a href="#">Acheter la chanson</a></li>
-                        <li class="mMessage"><a href="#">Envoyer un message</a></li>
-                        <li class="mEditDetails"><a href="#">Modifier les infos</a></li>
-            <li class="mMessageAll"><a href="#">Écrire un message à tous les utilisateurs</a></li>
-            <li class="mEditPermissions"><a href="#">Modifier les autorisations</a></li>
-            <li class="mAbdicate"><a href="#">Céder ma place</a></li>
-            <li class="mLeave"><a href="#">Quitter ce groupe</a></li>
-            
-            <li class="mLoading"><a href="#">&nbsp;</a></li>
-        </ul>
-    </div>
-</div>
-
-
-
-<div style="display: none">
-    <script src="//dw.cbsimg.net/js/cbsi/ds.js"></script>
-    <script>
-        if (typeof DW === "object") {
-            DW.pageParams = {
-                siteid: '190',
-                ptid: '5026'
-            };
-            DW.tagNielsen = false;
-            DW.clear();
-        }
-    </script>
-    <noscript>
-        <img src="//dw.cbsimg.net/clear/c.gif?ts=1406192275&amp;sid=190;" />
-    </noscript>
-</div>
-<div id="LastAd_tracking" class="LastAd ad-tracking inactive" data-require="ads/staticadslot" data-ad-static data-ad-placement="tracking" data-ad-collapsible>
-    <span>     
-            <iframe name="__bkframe" height="0" width="0" frameborder="0" src="javascript:void(0)"></iframe>
-<script type="text/javascript" src="//tags.bkrtx.com/js/bk-coretag.js"></script>
-<script type="text/javascript">
-            bk_addPageCtx("ar", "rageagainstthemachine,audioslave,limpbizkit,onedayasalion,korn,tool,systemofadown,redhotchilipeppers,deftones,soundgarden,p.o.d.");
-            bk_addPageCtx("tag", "rock,alternativerock,alternative,political,metal,rapcore,hardrock,alternativemetal,crossover,rapmetal");
-            bk_addPageCtx("path", "row-lastfm/userstore/userstore/images");
-            bk_addPageCtx("site", "ccbsilastfmsite");
-            bk_addPageCtx("ptype", "artist_gallery_list");
-        bk_ignore_meta = true;
-    bk_doJSTag(16515, 4);
-</script>        
-    </span>
-</div>
-
-
-<script data-require="omniture">
-    LFM.viewGuid = LFM.viewGuid ? LFM.viewGuid : uuid();
-    var omdata = {
-        context: {
-                        musicArtistId: "lfm-artist-1014421",
-                                    siteSection: "music",
-            pageType: "artist_gallery_list",
-            pageViewGuid: LFM.viewGuid
-        }
-    };
-</script>
-
-<!-- Adobe Marketing Cloud Tag Loader Code-->
-<script type="text/javascript">//<![CDATA[
-var amc=amc||{};if(!amc.on){amc.on=amc.call=function(){}};
-document.write("<scr"+"ipt type=\"text/javascript\" src=\"//www.adobetag.com/d2/v2/ZDItY2JzaW50ZXJhY3RpdmUtNDgxNC00MTct/amc.js\"></sc"+"ript>");
-//]]></script>
-<!-- End Adobe Marketing Cloud Tag Loader Code -->
-<script>
-LFM.Button.MultiButton.setup();
-LFM.Display.setMinHeight();
-</script>
-
-<div id="fb-root"></div>
-    
-    
-    <script src="http://cn.cbsimg.net/cnwk.1d/Aud/javascript/last/apex.js"></script>
-    <script>
-        var cbsiApexGlobal = {
-                    'SITE' : '190',
-                    'PTYPE' : '2000'
-                  };
-        if (typeof cbsiRunApexTargets === "function") {
-            cbsiRunApexTargets(cbsiApexGlobal, 1000);
-        }
-    </script>
-
-        
-    <script>
-    window.ClickTaleSettings = { XHRWrapper: { Enable: true} };
-    document.write(unescape("%3Cscript%20src='" +
-(document.location.protocol == 'https:' ?
-  'https://clicktalecdn.sslcs.cdngc.net/' :
-  'http://cdn.clicktale.net/') +
-"www09/ptc/220b3951-66a2-4b8e-ac35-fa58bfb30846.js'%3E%3C/script%3E"));
-
-    </script>
-    
-
-    
-        
-    </body>
-</html>
\ No newline at end of file
diff --git a/tests/fixtures/lastfm_artist_rage_machine.xml b/tests/fixtures/lastfm_artist_rage_machine.xml
deleted file mode 100644
index c8117c63d765e110fb5f43fa9b86fad316129aaa..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_artist_rage_machine.xml
+++ /dev/null
@@ -1,339 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<lfm status="ok">
-<results for="rage machine" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/">
-<opensearch:Query role="request" searchTerms="rage machine" startPage="1" />
-<opensearch:totalResults>808</opensearch:totalResults>
-<opensearch:startIndex>0</opensearch:startIndex>
-<opensearch:itemsPerPage>30</opensearch:itemsPerPage><artistmatches>
-<artist>
-    <name>Rage Against the Machine</name>
-                <listeners>2593812</listeners>
-                <mbid>3798b104-01cb-484c-a3b0-56adc6399b80</mbid>
-                        <url>http://www.last.fm/music/Rage+Against+the+Machine</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/380903.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/380903.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/380903.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/380903.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/380903/Rage+Against+the+Machine.jpg</image>
-    </artist><artist>
-    <name>Rage Against the Machine &amp; Tool</name>
-                <listeners>2571</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+the+Machine+&amp;+Tool</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against The Machine &amp; Beastie Boys</name>
-                <listeners>2365</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+The+Machine+&amp;+Beastie+Boys</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/12483169.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/12483169.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/12483169.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/12483169.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/500/12483169/Rage+Against+The+Machine++Beastie+Boys+jmjjjjjjjjjjjjjjjjjjjjj.jpg</image>
-    </artist><artist>
-    <name>Shaggy vs. Rage Against The Machine</name>
-                <listeners>1988</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Shaggy+vs.+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Queen vs. Red Hot Chili Peppers vs. Rage Against The Machine vs. ACDC vs. Joan Jett &amp; Friends</name>
-                <listeners>1472</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Queen+vs.+Red+Hot+Chili+Peppers+vs.+Rage+Against+The+Machine+vs.+ACDC+vs.+Joan+Jett+&amp;+Friends</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Limp Bizkit &amp; Rage Against The Machine &amp; POD &amp; Offspring &amp; Greenday &amp; Nirvana &amp; Pearl Jam</name>
-                <listeners>939</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Limp+Bizkit+&amp;+Rage+Against+The+Machine+&amp;+POD+&amp;+Offspring+&amp;+Greenday+&amp;+Nirvana+&amp;+Pearl+Jam</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/2322209.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/2322209.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/2322209.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/2322209.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/2322209/Limp+Bizkit++Rage+Against+The+Machine++POD++Offspr+mercy_black.jpg</image>
-    </artist><artist>
-    <name>Tool &amp; Rage Against The Machine</name>
-                <listeners>761</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Tool+&amp;+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against The Machine vs. Beastie Boys</name>
-                <listeners>634</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+The+Machine+vs.+Beastie+Boys</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Tool and Rage Against The Machine</name>
-                <listeners>587</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Tool+and+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against The Machine vs. Blackstreet</name>
-                <listeners>532</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+The+Machine+vs.+Blackstreet</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>rage machine</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/rage+machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against the Machine/Mr Oizo</name>
-                <listeners>298</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+the+Machine%2FMr+Oizo</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Outkast vs. Rage Against the Machine</name>
-                <listeners>295</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Outkast+vs.+Rage+Against+the+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>The Beatles vs. Joan Jett &amp; The Blackhearts vs. Cypress Hill vs. House Of Pain vs. Rage Against The Machine</name>
-                <listeners>279</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/The+Beatles+vs.+Joan+Jett+&amp;+The+Blackhearts+vs.+Cypress+Hill+vs.+House+Of+Pain+vs.+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage aganst machine</name>
-                <listeners>9</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+aganst+machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>The Rage Against Machine</name>
-                <listeners>4</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/The+Rage+Against+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Aganist Machine</name>
-                <listeners>4</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Aganist+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage / Machine</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+%2F+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>rage-against-machine</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/rage-against-machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Againt Machine</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Againt+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Matrix - Rage Against Machine</name>
-                <listeners>5</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Matrix+-+Rage+Against+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against Machine and tool</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+Machine+and+tool</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Prodigy &amp; Rage Against Machine</name>
-                <listeners>3</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Prodigy+&amp;+Rage+Against+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Karaoke - Rage Against The Machine</name>
-                <listeners>189</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Karaoke+-+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rage Against Machine/Zack De La Rocha</name>
-                <listeners>11</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rage+Against+Machine%2FZack+De+La+Rocha</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Wu Tang w/ rage against machine</name>
-                <listeners>6</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Wu+Tang+w%2F+rage+against+machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Rihanna ft. Jay-Z and Rage Against the Machine</name>
-                <listeners>167</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Rihanna+ft.+Jay-Z+and+Rage+Against+the+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Glenn Miller &amp; His Orchestra vs. Rage Against The Machine</name>
-                <listeners>167</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Glenn+Miller+&amp;+His+Orchestra+vs.+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Матрица_Rage Against The Machine</name>
-                <listeners>146</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/%D0%9C%D0%B0%D1%82%D1%80%D0%B8%D1%86%D0%B0_Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small"></image>
-        <image size="medium"></image>
-        <image size="large"></image>
-        <image size="extralarge"></image>
-        <image size="mega"></image>
-    </artist><artist>
-    <name>Alice In Chains &amp; Rage Against The Machine</name>
-                <listeners>165</listeners>
-                <mbid></mbid>
-                        <url>http://www.last.fm/music/Alice+In+Chains+&amp;+Rage+Against+The+Machine</url>
-    <streamable>0</streamable>
-            <image size="small">http://userserve-ak.last.fm/serve/34/60306439.jpg</image>
-        <image size="medium">http://userserve-ak.last.fm/serve/64/60306439.jpg</image>
-        <image size="large">http://userserve-ak.last.fm/serve/126/60306439.jpg</image>
-        <image size="extralarge">http://userserve-ak.last.fm/serve/252/60306439.jpg</image>
-        <image size="mega">http://userserve-ak.last.fm/serve/_/60306439/Alice+In+Chains++Rage+Against+The+Machine+Class+of+99.jpg</image>
-    </artist></artistmatches>
-</results></lfm>
diff --git a/tests/fixtures/lastfm_right_franz_liszt_pelerinage.html b/tests/fixtures/lastfm_right_franz_liszt_pelerinage.html
deleted file mode 100644
index 65e1253e5bfa02c4e702c42202771cec77f04ba8..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_right_franz_liszt_pelerinage.html
+++ /dev/null
@@ -1,1536 +0,0 @@
-<!DOCTYPE html>
-<html lang="en" class="no-js lastfm">
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" />
-    <link rel="profile" href="http://purl.org/uF/2008/03/" />
-        <!–[if IE]><![endif]–>
-
-            <title>Liszt: Annees De Pelerinage, Vol.  2 – Franz Liszt – Listen and discover music at Last.fm</title>        
-        <script>(function(e) { e.className = e.className.replace(/\bno-js\b/,'js'); })(document.documentElement)</script>
-
-    <link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch.xml" title="Last.fm" />
-            <meta name="description" content="Listen free to Franz Liszt – Liszt: Annees De Pelerinage, Vol. 2 (Annees De Pelerinage, 2nd Year, Italy, S161/R10b: No. 1. Sposalizio (Marriage Of The…, Annees de pelerinage, 2nd year, Italy, S161/R10b: No. 5. Sonetto 104 del Petrarca… and more). 10 tracks (68:18). Liszt: Annees De Pelerinage, Vol. 2 was released 12 Feb 1992. Franz Liszt (1811, Doborján, Hungary - 1886, Bayreuth, Germany)(Hungarian: Ferencz Liszt, in modern usage Ferenc Liszt, from 1859 to 1865 officially Franz Ritter von Liszt) (22 October 1811 – 31July 1886) was a Hungarian composer, virtuoso pianist, and teacher. Liszt became renowned throughout Europe for his great skill as a performer during the 1800s. He is said to have been the most technically advanced and perhaps greatest pianist of all time. He was also an important and influential composer, a notable piano teacher, a conductor who contributed significantly to the modern development of the art, and a benefactor to other composers and performers, notably Richard Wagner and Hector Berlioz. Discover more music, concerts, videos, and pictures with the largest catalogue online at Last.fm."/>
-    
-
-        <meta name="robots" content="NOODP" />
-    
-                <meta property="og:site_name" content="Last.fm" />
-<meta property="fb:app_id" content="192959324047861" />
-
-            
-                        
-        <meta property="og:title" content="Franz Liszt – Liszt: Annees De Pelerinage, Vol. 2" />
-            <meta property="og:url" content="http://www.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-        <meta property="og:image" content="http://userserve-ak.last.fm/serve/126/68716056.jpg" />
-       <meta property="og:type" content="album" />        
-         
-        <link rel="shortcut icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
-        <link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
-    
-        
-        
-            <link rev="canonical" href="http://last.fm/+rFVp3" />
-    <link rel="shortlink" href="http://last.fm/+rFVp3" />
-        
-                
-            <link rel="alternate" hreflang="de" href="http://www.lastfm.de/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="es" href="http://www.lastfm.es/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="fr" href="http://www.lastfm.fr/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="it" href="http://www.lastfm.it/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="ja" href="http://www.lastfm.jp/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="pl" href="http://www.lastfm.pl/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="pt" href="http://www.lastfm.com.br/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="ru" href="http://www.lastfm.ru/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="sv" href="http://www.lastfm.se/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-                <link rel="alternate" hreflang="zh" href="http://cn.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" />
-            
-    
-        <style>html {zoom: 1;}</style>    <script>
-
-        if(top !== self && top.location.domain !== self.location.domain) {
-            (function(d, s) {
-                if(s && s.insertRule) {
-                    s.insertRule('body { display: none !important }', 0);
-                } else if(s && s.addRule) {
-                    s.addRule('body', 'display: none !important');
-                }
-                top.location.replace(d.location.href);
-            })(document, document.styleSheets[0]);
-        }
-</script>
-
-                                        <link rel="stylesheet" href="http://cdn.last.fm/css/css/217393/music/album/overview.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/217393/master.css" />
-                        
-        
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
-<script>$.noConflict();</script>
-<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
-<script>
-    if(typeof Prototype === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/217393/lib/prototype.js' type='text/javascript'%3E%3C/script%3E"));
-    }
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/217393/prototype.ie.js"></script>
-<script src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>
-<script>
-    if(typeof Scriptaculous === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/217393/lib/scriptaculous/scriptaculous.js' type='text/javascript'%3E%3C/script%3E"));
-    }
-</script>
-
-<script src="http://cdn.last.fm/javascript/javascript/217393/lib/mustache.js"/></script>
-
-<script>
-    /* We like defered loading of SoundManager2 */
-    SM2_DEFER = true;
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/217393/lib/sm2-min.js"></script>
-
-<script src="http://cdn.last.fm/javascript/javascript/217393/LFM.js"></script>
-
-<script>
-    LFM.set("ParentResource", {"id":"3347343","type":8,"name":"Liszt: Annees De Pelerinage, Vol.  2","url":"\/music\/Franz+Liszt\/Liszt:+Annees+De+Pelerinage,+Vol.++2","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/68716056.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/68716056.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/68716056.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/68716056\/Liszt+Annees+De+Pelerinage+Vol++2.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":10});
-    LFM.Adserver.showAds = true;
-    LFM.set("Session", {"cookieHost":".last.fm","host":"www.last.fm","staticHost":"http:\/\/cdn.last.fm","wsHost":"ws.audioscrobbler.com","userserveHost":"http:\/\/userserve-ak.last.fm","wsKey":"ceec2bb03d4c5929f0d6667fc266dc75","formtoken":"2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3","location":"fr","language":"en","ajaxhost":"ajax.last.fm","loggedIn":false});
-    LFM.set("resTypes", {
-        EVENT: 29,
-        ARTIST: 6,
-        ALBUM: 8,
-        TRACK: 9,
-        GROUP: 20,
-        TAG: 32,
-        USER: 4,
-        LABEL: 10
-    });
-    LFM.set("resTypeLookup", {
-        29: "Event",
-        6: "Artist",
-        8: "Album",
-        9: "Track",
-        20: "Group",
-        32: "Tag",
-        4: "User",
-        10: "Label"
-    });
-    LFM.set("String", {toRedStr: "Simply Red",toBlackStr: "Paint it Black",okText: "OK",cancelText: "Cancel",clickToEditText: "Click to edit",savingText: "Saving…",loadingText: "Loading…",deletingText: "Deleting…",thereWasAnError: "There was an error.",dialogLoadError: "There was an error loading this dialog.",fileTooBig: "Sorry, the file is too big.",noFile: "Please choose a file.",uploadCancelled: "Upload Cancelled.",deleteMessageTitle: "Delete Message",deleteMessagePrompt: "Are you sure you want to delete this message?",deleteFriendPrompt: "Are you sure you want to delete this friend?",deleteImage: "Are you sure you want to delete this image?",deleteButtonText: "Delete",done: "Done",backText: "Back",yesText: "Yes",noText: "No",saveText: "Save",saveTitle: "Add to profile",sendText: "Send",sendTitle: "Share with friends",addTitle: "Add to library",tagTitle: "Add tags",playlistTitle: "Add to playlist",obsessionTitle: "Personalise your obsession",befriendTitle: "Add a friend",joinTitle: "Join this group",loved: "Loved",RemoveFromLibraryTitle: "Remove from library",uploadImageTitle: "Upload Image",uploadVideoTitle: "Upload Video",usernoteTitle: "Add a note",cleanupBioTitle: "Cleanup Bio",flageventTitle: "Flag for review",setLocationTitle: "Set your Location",newWindowTooltip: "This link will open in a new window",unloadWarningMessage: "This will stop Radio Playback",trackLoved: "You loved this track",playbackStopped: "Playback stopped",loadingTrackInfo: "Loading track information",errorLoadingTrackInfo: "Error loading track information",emailLineup: "Email this",uploadMessages: {mayTakeLonger: "Sorry, this may take slightly longer than usual. Hold on a couple of seconds.",uploading: "Uploading…",endUploading: "Done",progressDisplay: "PERCENTUPLOADED% complete (TRANSFERRATE kb/s) – TIMEREMAINING seconds remaining",progressComplete: "100% complete",failedRetrying: "Failed retrying upload, bailed.",processingMedia: "Processing media…",unsupportedFormat: "Sorry, the file you uploaded isn’t encoded in a supported format. Please try again.",uploadError: "There was an error uploading your video, please verify that the file you are uploading is not too large or of an incorrect format and try again."},shortMonths: {'1': "Jan",'2': "Feb",'3': "Mar",'4': "Apr",'5': "May",'6': "Jun",'7': "Jul",'8': "Aug",'9': "Sep",'10': "Oct",'11': "Nov",'12': "Dec"},resTypePlural: {29: "Events",6: "Artists",8: "Albums",9: "Tracks",20: "Groups",32: "Tags",4: "Users","friends":   "Friends",10: "Labels"}});LFM.set("Element", {icon_loved_indicator: "<img class=\"icon loved_indicator_icon\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_tag: "<img class=\"icon tag_icon\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_dismiss: "<img class=\"icon dismiss_icon\" width=\"16\" height=\"16\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_play: "<img class=\"transparent_png play_icon\" width=\"13\" height=\"13\" alt=\"Play\" src=\"http:\/\/cdn.last.fm\/flatness\/preview\/play_indicator.png\" style=\"\" \/>"});
-</script>
-
-    <script src="http://cdn.last.fm/javascript/javascript/217393/components.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/217393/dialog.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/217393/form/typeahead.js"></script>
-
-
-
-
-<script>
-    LFM.Social.networks = {};
-    LFM.Social.networks.facebook = new LFM.Social.Facebook("en_US", "http%3A%2F%2Fwww.last.fm%2Ffacebook-channel.php%3Flang%3Den_US");
-    LFM.Social.networks.twitter = new LFM.Social.Twitter();
-    LFM.Social.networks.plusone = new LFM.Social.Plusone("");
-</script>
-
-
-<script>
-
-LFM.Page.Tracker = new LFM.Analytics.Tracker('Music/Album/Overview', window.location.host);
-
-document.observe('dom:loaded', function() {
-    
-    LFM.Page.Tracker.bindOutboundLinkListener();
-    LFM.Page.Tracker.bindEventListener();
-    LFM.Page.Tracker.bindSocialListeners();
-
-});
-
-</script>
-
-
-        
-    <script>document.observe("dom:loaded", function () { if (typeof ieHover !== 'undefined') ieHover.setUp(); });</script>
-    
-    <script>
-var _gaq = _gaq || [];
-
-
-_gaq.push(['pT._setAccount', 'UA-1966571-6'], ['mT._setAccount', 'UA-28600396-1'], ['eT._setAccount', 'UA-1966571-8'], ['cbsiT._setAccount', 'UA-27653683-1']);
-_gaq.push(['cbsiT._setAllowLinker', true], ['cbsiT._setDomainName', 'www.last.fm'], ['cbsiT._setSampleRate', '1']);
-
-</script>
-<script>
-
-_gaq.push(['pT._setCustomVar', 1, 'PageRegistrationStatus', 'LoggedOut', 3]);
-_gaq.push(['eT._setCustomVar', 1, 'PageRegistrationStatus', 'LoggedOut', 3]);
-_gaq.push(function () {
-    var newValue     = "Anonymous",
-        pageTracker  = _gat._getTrackerByName('pT'),
-        eventTracker = _gat._getTrackerByName('eT'),
-        oldValue = pageTracker._getVisitorCustomVar(2),
-        setValue = false;
-
-    
-    if (!oldValue) {
-        setValue = true;
-    } else if (oldValue === newValue) {
-        setValue = false;
-    } else if (oldValue !== newValue && newValue !== 'Anonymous') {
-        setValue = true;
-    }
-
-    if (setValue) {
-        pageTracker._setCustomVar(2, 'VisitorStatus', newValue, 1);
-        eventTracker._setCustomVar(2, 'VisitorStatus', newValue, 1);
-    }
-    
-});
-_gaq.push(['pT._setCustomVar', 4, 'Artist', "Franz Liszt", 3]);
-_gaq.push(['eT._setCustomVar', 4, 'Artist', "Franz Liszt", 3]);
-LFM.Page.Tracker.trackPageview = function(url) {
-    if(!url) {
-        _gaq.push(['pT._trackPageview', 'music/album/overview'], ['mT._trackPageview'], ['eT._trackPageview', 'music/album/overview'], ['cbsiT._trackPageview']);
-    } else {
-        _gaq.push(['pT._trackPageview', 'music/album/overview'], ['mT._trackPageview', url], ['eT._trackPageview', 'music/album/overview'], ['cbsiT._trackPageview', url]);       
-    }   
-}; 
-LFM.Page.Tracker.trackPageview();
-
-
-
-(function(d) {
-    var ga = d.createElement('script'); ga.async = true;
-    ga.src = ('https:' == d.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
-    var s = d.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-})(document);
-
-</script></head>
-
-
-
-<!--[if lt IE 7 ]> <body class="r-album a-overview lang-en ie ie6"> <![endif]-->
-<!--[if IE 7 ]>    <body class="r-album a-overview lang-en ie ie7"> <![endif]-->
-<!--[if IE 8 ]>    <body class="r-album a-overview lang-en ie ie8"> <![endif]-->
-<!--[if IE 9 ]>    <body class="r-album a-overview lang-en ie ie9"> <![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <body class="r-album a-overview lang-en"> <!--<![endif]-->
-
-
-        <script>var WRInitTime = +new Date();</script>
-    
-                <div id="fauxHeaderContainer" class="clearit">
-            <div id="fauxHeader"></div>
-        </div>
-        <div id="page" class="            ">
-        <div class="fiflufi">
-            
-
-<div id="header" class="clearit" role="banner">
-    <div id="headerWrapper">
-        
-        <a href="/" id="lastfmLogo">Last.fm</a>
-        
-        <ul id="primaryNav" role="navigation">
-            <li id="musicNav" class="navItem">
-                <a href="/music" class="nav-link">Music</a>
-            </li>
-            <li id="listenNav" class="navItem">
-                <a href="/listen" class="nav-link">Radio</a>
-            </li>
-            <li id="eventsNav" class="navItem">
-                <a href="/events" class="nav-link">Events</a>
-            </li>
-            <li id="chartsNav" class="navItem">
-                <a href="/charts" class="nav-link">Charts</a>
-            </li>
-            <li id="communityNav" class="navItem">
-                <a href="/community" class="nav-link">Community</a>
-            </li>
-        </ul>
-        
-        <div id="profileLinks">
-    <ul>
-            <li id="loginLink" class="profileItem">
-            <a href="/login" class="profile-link"><strong>Login</strong></a>
-        </li>
-        <li id="signupLink" class="profileItem">
-            <a href="/join" class="profile-link"><strong>Join</strong></a>
-        </li>
-        </ul>
-</div>               
-        <div id="headerLinks">
-                                    <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?change=language" title="Click here to change your language" rel="nofollow" id="headerLangToggle" class="icon">
-            <img class="transparent_png globe_icon icon" alt="Change language" width="11" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />            <span>English</span>
-        </a> | 
-            <a href="/help">Help</a>
-</div>
-
-<form id="siteSearch" method="get" action="/search" class="autocomplete" role="search">
-    <img src="http://cdn.last.fm/flatness/clear.gif" width="16" height="16" id="siteSearchProgress" style="display: none;" />
-    <input id="siteSearchBox" type="text" name="q" autocomplete="off" placeholder="Music search" size="26" />
-    <input type="hidden" name="from" value="ac" />
-    <button id="siteSearchSubmit" type="submit" class="submit" title="Search"></button>
-</form>
-
-<script>
-    LFM.set('String', {
-        'siteSearchViewAll': "Search for ‘QUERY’",
-        'siteSearchSuggestions': "Popular suggestions",
-        'siteSearchNoSuggestions': "No suggestions…",
-        'autocompletePersonalDataDown': "Friends, groups and labels search is currently unavailable."
-    });
-</script>
-        
-        <div id="headerPromo">
-                                                            
-                                                
-                
-                <a href="/discover">Last.fm/discover: find your next favourite band »</a>                        
-        </div>
-        
-    </div><!-- #headerWrapper -->
-</div><!-- #header -->
-<script>LFM.Display.setupHeader();</script>
-
-
-
-                   
-
-<div id="LastAd_beacon" class="LastAd ad-beacon inactive">
-    <span> 	
-            <script type="text/javascript">
-sas_tmstp=Math.round(Math.random()*10000000000);
-sas_pageid='30463/211758';
-sas_target='Gender=;Age=;Logged=0;Tag=classical;ID=album-3347343';
-
-function SmartAdServer(sas_pageid,sas_formatid,sas_target) {
-    if (sas_masterflag==1) {sas_masterflag=0;sas_master='M';} else {sas_master='S';};
-    this.document.write('<scr'+'ipt src="http://www4.smartadserver.com/call/pubj/' + sas_pageid + '/' + sas_formatid + '/' + sas_master + '/' + sas_tmstp + '/' + escape(sas_target) + '?"></scr'+'ipt>');
-}
-
-</script>        
-    <script>LFM.Adserver.registerAd('beacon');</script>
-	</span>
-</div>
-    <div id="LastAd_skin" class="LastAd ad-skin inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10720;
-    repo.sas_masterflag=1;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10720/M/1339667677/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10720/M/1339667677/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('skin');</script>
-	</span>
-</div>
-    
-<ul id="langSelector"  style="display: none;" class="nojs">
-                
-        
-                <li class="de">
-            <a href="http://www.lastfm.de/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=de" class="icon">
-                                <img class="icon flag_de_icon" alt="Deutsch" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Deutsch</span>
-            </a>
-        </li>
-                    <li class="es">
-            <a href="http://www.lastfm.es/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=es" class="icon">
-                                <img class="icon flag_es_icon" alt="Español" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Español</span>
-            </a>
-        </li>
-                    <li class="fr">
-            <a href="http://www.lastfm.fr/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=fr" class="icon">
-                                <img class="icon flag_fr_icon" alt="Français" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Français</span>
-            </a>
-        </li>
-                    <li class="it">
-            <a href="http://www.lastfm.it/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=it" class="icon">
-                                <img class="icon flag_it_icon" alt="Italiano" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Italiano</span>
-            </a>
-        </li>
-                    <li class="ja">
-            <a href="http://www.lastfm.jp/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=jp" class="icon">
-                                <img class="icon flag_jp_icon" alt="日本語" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>日本語</span>
-            </a>
-        </li>
-                    <li class="pl">
-            <a href="http://www.lastfm.pl/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=pl" class="icon">
-                                <img class="icon flag_pl_icon" alt="Polski" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Polski</span>
-            </a>
-        </li>
-                    <li class="pt">
-            <a href="http://www.lastfm.com.br/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=pt" class="icon">
-                                <img class="icon flag_pt_icon" alt="Português" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Português</span>
-            </a>
-        </li>
-                    <li class="ru">
-            <a href="http://www.lastfm.ru/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=ru" class="icon">
-                                <img class="icon flag_ru_icon" alt="Руccкий" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Руccкий</span>
-            </a>
-        </li>
-                    <li class="sv">
-            <a href="http://www.lastfm.se/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=sv" class="icon">
-                                <img class="icon flag_se_icon" alt="Svenska" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Svenska</span>
-            </a>
-        </li>
-                    <li class="tr">
-            <a href="http://www.lastfm.com.tr/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=tr" class="icon">
-                                <img class="icon flag_tr_icon" alt="Türkçe" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Türkçe</span>
-            </a>
-        </li>
-                    <li class="zh">
-            <a href="http://cn.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2?setlang=zh" class="icon">
-                                <img class="icon flag_zh_icon" alt="简体中文" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>简体中文</span>
-            </a>
-        </li>
-        
-</ul>
-<script>
-
-    $("langSelector").className = "js";
-    LFM.set("Page", {
-        navDropDown: new LFM.Display.DropDown(
-            "headerLangToggle",
-            "headerLangToggle",
-            "langSelector",
-            {
-                align: "left",
-                onShow: function (dropdown) {
-                    dropdown.ddbody.setStyle({
-                        top: (dropdown.ddbody.getStyle("top").toPixels() + 2) + "px"
-                    });
-                }
-            }
-        )
-    });
-</script>
-
-<div id="LastAd_leaderboard" class="LastAd ad-leaderboard inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10710;
-    repo.sas_masterflag=0;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10710/S/1339667677/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10710/S/1339667677/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('leaderboard');</script>
-	</span>
-</div><div id="content">
-    <div><!-- This containing div fixes an IE bug where the absolutely positioned element disappears randomly. Don’t ask me why. -->
-    <div id="secondaryNavigation" role="navigation">
-                                <ul>
-        <li class=" first "><a href="/music/Franz+Liszt">Artist</a></li>    <li><a href="/music/Franz+Liszt/+wiki">Biography</a></li>    <li><a href="/music/Franz+Liszt/+images">Pictures</a></li>    <li><a href="/music/Franz+Liszt/+videos">Videos</a></li>    <li class=" current "><a href="/music/Franz+Liszt/+albums">Albums</a></li>    <li><a href="/music/Franz+Liszt/+tracks">Tracks</a></li>    <li><a href="/music/Franz+Liszt/+events">Events</a></li>    <li><a href="/music/Franz+Liszt/+news">News</a></li>    <li><a href="/music/Franz+Liszt/+charts">Charts</a></li>    <li><a href="/music/Franz+Liszt/+similar">Similar Artists</a></li>    <li><a href="/music/Franz+Liszt/+tags">Tags</a></li>    <li><a href="/music/Franz+Liszt/+listeners">Listeners</a></li>    <li><a href="/music/Franz+Liszt/+journal">Journal</a></li>    <li class="last"><a href="/music/Franz+Liszt/+groups">Groups</a></li>
-</ul>                </div>
-</div>    
-    <div class="leftCol">
-        <div class="leftColWrapper" itemscope itemtype="http://schema.org/MusicAlbum">
-            
-                        
-            <div class="album-breadcrumb breadcrumb">
-    <a href="/music/Franz+Liszt"   >Franz Liszt</a> &raquo; <span>Liszt: Annees De Pelerinage, Vol.  2</span></div>            
-                        <div id="catalogueHead" class="catalogueHead albumHead clearit">
-                
-                                
-                <div class="albumCover">
-                    <span id="albumCover" class="albumCover coverMega"><img  width="174" src="http://userserve-ak.last.fm/serve/174s/68716056.jpg" class="art"  id="albumCover" class="albumCover coverMega"  itemprop="image" /><span class="jewelcase"></span></span>                
-                                    </div>
-
-                                                    <ul class="playlinks">
-    <li>
-        <a href="http://www.last.fm/affiliate/byid/8/3347343/6/albumpage/0" class="provider" data-analytics-action="Playlink" data-analytics-label="Spotify" target="_blank" rel="nofollow">
-
-            <span class="icon-wrapper">
-                                    <img class="icon ss-spotify_icon favicon" alt="Spotify" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />                            </span>
-
-                            Search on <strong>Spotify</strong>
-                    </a>
-            </li>
-</ul>                
-                <h1><b itemprop="name">Liszt: Annees De Pelerinage, Vol.  2</b> by <a href="/music/Franz+Liszt"   >Franz Liszt</a></h1>
-                <span itemprop="byArtist" class="hide" itemscope itemtype="http://www.schema.org/MusicGroup">
-                    <meta itemprop="name" content="Franz Liszt" />
-                </span>
-                
-                                <p class="stats">
-                    66,741 plays                    <meta itemprop="interactionCount" content="UserPlays:66741" />
-                    <span id="listenerCount" data-listener-count="42154">                    (42,154 listeners)
-                    </span>
-                    <br />
-                                            <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2"    id="inLibraryIndicatorForArtist" style="display: none;">In your library (0 plays)</a>                                    </p>
-                                
-                <div class="buttons">
-                    <div id="buyContain1" class="lfmDropDown buyButton">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/3347343/13/album-overview-top-dropdown" 
-                    id="buyToggle1" 
-                    target="_blank"
-                    class="lfmButton lfmBigButton lfmBigBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody1" class="lfmDropDownBody lfmBuyDropDownBody lfmBigBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347343/13/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 3347343);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347343/44/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 3347343);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347343/24/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 3347343);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347343/1/album-overview-top-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 3347343);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347343/90/album-overview-top-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 3347343);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain1', 'buyToggle1', 'buyBody1', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div>                                            <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2"    id="button1" class="lfmButton lfmBigButton lfmAddButton 
-"><strong>Add to my Library</strong></a>
-    <script>
-(function () {
-    function showDialog () {
-        LFM.Add({"id":"3347343","type":8,"name":"Liszt: Annees De Pelerinage, Vol.  2","url":"\/music\/Franz+Liszt\/Liszt:+Annees+De+Pelerinage,+Vol.++2","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/68716056.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/68716056.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/68716056.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/68716056\/Liszt+Annees+De+Pelerinage+Vol++2.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":10}, {
-            parameters: null
-                        
-                                     
-             
-                    });
-    }
-        $("button1") && $("button1").observe("click", function (e) {
-        e.stop();
-                    LFM.Page.Tracker.storeTagSource("addToLibraryBtn");
-                showDialog();
-    });
-})()
-</script>
-
-<script></script>                                        
-                </div>
-                
-                                    <div class="tags">
-                                                    <p>
-                                Popular tags:
-                                                                    
-                                    
-                                    <meta itemprop="keywords" content="classical, romantic, liszt, piano, handel">
-                                    
-                                    
-                                    <a href="/tag/classical" rel="tag">classical</a>, <a href="/tag/romantic" rel="tag">romantic</a>, <a href="/tag/liszt" rel="tag">liszt</a>, <a href="/tag/piano" rel="tag">piano</a>, <a href="/tag/handel" rel="tag">handel</a>
-                                                                            &nbsp;<a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/+tags"   ><strong>See more</strong></a>                                                                                                                                                                       </p>
-                    </div>
-                                <p class="shoutcount">
-                    Shouts: <span class="shoutCount">
-    <a href="#shoutbox" id="shoutBoxLink"  class="icon" data-analytics-action="ShoutCountLink">
-        <img class="icon comment_icon" width="13" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span>Add shout</span>
-    </a>
-</span>                </p>
-                
-                                <div id="sharebar" class="s-resource">
-    <strong>
-                        Share this album:
-                </strong>
-    <ul id="sharebuttons">
-                <li class="twt-share">
-            <a href="http://twitter.com/share?url=http%3A%2F%2Fwww.last.fm%2Fmusic%2FFranz%2BLiszt%2FLiszt%3A%2BAnnees%2BDe%2BPelerinage%2C%2BVol.%2B%2B2&amp;text=Check%20out%20Franz%20Liszt%20%E2%80%93%20Liszt%3A%20Annees%20De%20Pelerinage%2C%20Vol.%20%202&amp;lang=en&amp;related=Lastfm_Trends&amp;count=none&amp;via=lastfm" class="twitter-share-button">Tweet</a>
-        </li>
-                <li class="google-plus1">
-            <g:plusone size="medium" count="false" callback="trackPlusone" href="http://www.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2"></g:plusone>
-            <script>
-
-                LFM.Social.networks.plusone.onReady(function(plusoneAPI) {
-                    plusoneAPI.plusone.go("sharebuttons");
-                });
-</script>
-        </li>
-                <li class="lfm-share">
-            <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2"    id="button2" class="lfmButton lfmBigButton lfmSendButton 
-"><strong>Send</strong></a>
-    <script>
-(function () {
-    function showDialog () {
-        LFM.Send({"id":"3347343","type":8,"name":"Liszt: Annees De Pelerinage, Vol.  2","url":"\/music\/Franz+Liszt\/Liszt:+Annees+De+Pelerinage,+Vol.++2","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/68716056.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/68716056.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/68716056.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/68716056.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/68716056.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/68716056\/Liszt+Annees+De+Pelerinage+Vol++2.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":10}, {
-            parameters: null
-                        
-                                     
-             
-                    });
-    }
-        $("button2") && $("button2").observe("click", function (e) {
-        e.stop();
-                    LFM.Page.Tracker.storeTagSource("shareBtn");
-                showDialog();
-    });
-})()
-</script>
-
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2", "Album");</script>        </li>
-                <!--[if !(lt IE 7)]><!-->         <li class="fbk-share">
-            <fb:like href="http://www.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" layout="button_count" show_faces="false" action="like" font="lucida grande" ref="sharebar"></fb:like>
-        </li>
-        <!--<![endif]-->
-    </ul>
-    <script>LFM.Page.Tracker.storeResourceTypeForURL("http://www.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2", "Album");</script>
-    
-</div>                
-            </div>
-            
-                                        <hr />
-                <h2 class="heading"><span class="h2Wrapper">Tracklist</span></h2>                
-                <table id="albumTracklist" class="candyStriped chart" odd="1">
-                            <thead>
-                <td class="positionCell">&nbsp;</td>
-                <td class="playbuttonCell">&nbsp;</td>
-                <td class="subjectCell">Track</td>
-                <td class="lovedCell">&nbsp;</td>
-                <td class="multibuttonCell">&nbsp;</td>
-                <td class="durationCell">Duration</td>
-                <td class="reachCell">Listeners</td>
-            </thead>
-            <tbody>
-        <tr class="first odd streamable" id="r9_311331653_1775389852" data-track-id="311331653"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                1            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="311331653" href="/music/Franz+Liszt/_/Annees+De+Pelerinage,+2nd+Year,+Italy,+S161%2FR10b:+No.+1.+Sposalizio+(Marriage+Of+The+Virgin)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/Annees+De+Pelerinage,+2nd+Year,+Italy,+S161%2FR10b:+No.+1.+Sposalizio+(Marriage+Of+The+Virgin)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+De+Pelerinage,+2nd+Year,+Italy,+S161%2FR10b:+No.+1.+Sposalizio+(Marriage+Of+The+Virgin)"    album=""><span itemprop="name">Annees De Pelerinage, 2nd Year, Italy, S161/R10b: No. 1. Sposalizio (Marriage Of The…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+De+Pelerinage,+2nd+Year,+Italy,+S161%2FR10b:+No.+1.+Sposalizio+(Marriage+Of+The+Virgin)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/Annees+De+Pelerinage,+2nd+Year,+Italy,+S161%2FR10b:+No.+1.+Sposalizio+(Marriage+Of+The+Virgin)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    8:24
-            </td>
-                        <td class="reachCell">
-                48
-            </td>
-                </tr><tr class="streamable" id="r9_514722081_956127202" data-track-id="514722081"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                2            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514722081" href="/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+2.+Il+penseroso+(The+Thinker)"    album=""><span itemprop="name">No. 2. Il penseroso (The Thinker)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+2.+Il+penseroso+(The+Thinker)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    4:39
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="odd streamable" id="r9_514722083_1097956555" data-track-id="514722083"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                3            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514722083" href="/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"    album=""><span itemprop="name">No. 3. Canzonetta del Salvator Rosa (Canzonetta of Salvador Rosa)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    2:55
-            </td>
-                        <td class="reachCell">
-                3
-            </td>
-                </tr><tr class="streamable" id="r9_421052691_1879849808" data-track-id="421052691"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                4            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052691" href="/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"    album=""><span itemprop="name">No. 4. Sonetto 47 del Petrarca (Sonnet 47 of Petrarch)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:23
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_312824515_1510852569" data-track-id="312824515"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                5            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="312824515" href="/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"    album=""><span itemprop="name">Annees de pelerinage, 2nd year, Italy, S161/R10b: No. 5. Sonetto 104 del Petrarca…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:38
-            </td>
-                        <td class="reachCell">
-                41
-            </td>
-                </tr><tr class="streamable" id="r9_421052693_1644988259" data-track-id="421052693"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                6            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052693" href="/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"    album=""><span itemprop="name">No. 6. Sonetto 123 del Petrarca (Sonnet 123 of Petrarch)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    7:08
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_421052695_1066405927" data-track-id="421052695"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                7            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052695" href="/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"    album=""><span itemprop="name">No. 7. Apres une lecture du Dante, fantasia quasi una sonata (After Reading Dante)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    16:03
-            </td>
-                        <td class="reachCell">
-                5
-            </td>
-                </tr><tr class="streamable" id="r9_531355720_664995595" data-track-id="531355720"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                8            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="531355720" href="/music/Franz+Liszt/_/I.+Gondoliera+(Gondolier's+Song)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/I.+Gondoliera+(Gondolier's+Song)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/I.+Gondoliera+(Gondolier's+Song)"    album=""><span itemprop="name">I. Gondoliera (Gondolier's Song)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/I.+Gondoliera+(Gondolier's+Song)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/I.+Gondoliera+(Gondolier's+Song)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    4:18
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_571122220_1178862927" data-track-id="571122220"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                9            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="571122220" href="/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy+supplement,+S162%2FR10:+Venezia+e+Napoli:+II.+Canzone+(Song)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy+supplement,+S162%2FR10:+Venezia+e+Napoli:+II.+Canzone+(Song)">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+de+pelerinage,+2nd+year,+Italy+supplement,+S162%2FR10:+Venezia+e+Napoli:+II.+Canzone+(Song)"    album=""><span itemprop="name">Annees de pelerinage, 2nd year, Italy supplement, S162/R10: Venezia e Napoli: II.…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+de+pelerinage,+2nd+year,+Italy+supplement,+S162%2FR10:+Venezia+e+Napoli:+II.+Canzone+(Song)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/Annees+de+pelerinage,+2nd+year,+Italy+supplement,+S162%2FR10:+Venezia+e+Napoli:+II.+Canzone+(Song)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:03
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="last streamable" id="r9_29544000_2145886102" data-track-id="29544000"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                10            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="29544000" href="/music/Franz+Liszt/_/III.+Tarantella"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/III.+Tarantella">
-                <meta itemprop="inAlbum" content="Liszt: Annees De Pelerinage, Vol.  2">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/III.+Tarantella"    album=""><span itemprop="name">III. Tarantella</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/III.+Tarantella"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/III.+Tarantella", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    8:47
-            </td>
-                        <td class="reachCell">
-                10
-            </td>
-                </tr>
-        </tbody>
-</table>                <hr />
-                <a style="margin-top: 1em;" class="stationbutton stationbuttonLarge" href="/listen/artist/Franz%2BLiszt/similarartists" data-analytics-action="PlayRadioButton" data-analytics-label="Login">
-    <span class="stationButtonWrapper">
-            <strong>Play Franz Liszt Radio</strong>
-                                                                                        <p>
-                                     With: Robert Schumann, Johannes Brahms, Frédéric Chopin, Franz Schubert and more… 
-                            </p>
-                </span>
-</a>                                                           
-                        <hr />
-            <h2 class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/+wiki"   >About this album</a></span></h2>            <div class="albumInfo clearit withLabelImage">
-                <a href="/label/Naxos"   ><img height="38" width="34" alt="" src="http://userserve-ak.last.fm/serve/34/4138213.gif" /></a>                                <span class="albumLabel"><a href="/label/Naxos"   >Naxos</a> (1992)</span>                                    <span class="albumDate">Released: 12 Feb 1992</span>                                                <span class="albumTracks">10 tracks <span dir="ltr">(68:18)</span></span>
-                            </div>
-
-                                        
-
- <div class="wiki">
- <div id="wikiAbstract" class="wiki-abstract">
- <div class=" messageBox
- infoMessage 
- ">
- <span class="messageWrapper"> We don’t have a description for this album yet, <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/+wiki/edit" >care to help</a>?
- </span>
- </div> </div>
- </div>
-
-                        
-                        
-                                        <hr />
-                <h2 class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/+albums"   >Other releases from this artist</a></span></h2>                
-                <ul odd="1" class="albums albumsMedium clearit">
-    <li class=" first  odd ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/THE+VERY+BEST+OF+LISZT"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/55720071.png" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> THE VERY BEST OF LISZT</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/THE+VERY+BEST+OF+LISZT"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain2" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/3345707/13/album-overview-album-list-dropdown" 
-                    id="buyToggle2" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody2" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 3345707);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 3345707);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3345707/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 3345707);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 3345707);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3345707/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 3345707);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain2', 'buyToggle2', 'buyBody2', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li>
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/Eyes+Wide+Shut"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/58659127.png" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> Eyes Wide Shut</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/Eyes+Wide+Shut"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain3" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/1413745/13/album-overview-album-list-dropdown" 
-                    id="buyToggle3" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody3" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 1413745);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 1413745);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413745/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 1413745);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 1413745);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413745/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 1413745);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain3', 'buyToggle3', 'buyBody3', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li class=" odd ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/Dreams+of+Classics"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/62967187.jpg" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> Dreams of Classics</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/Dreams+of+Classics"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain4" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/1413747/13/album-overview-album-list-dropdown" 
-                    id="buyToggle4" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody4" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 1413747);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 1413747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413747/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 1413747);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 1413747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413747/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 1413747);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain4', 'buyToggle4', 'buyBody4', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li class=" last ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/LISZT+(THE+BEST+OF)"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/71713992.jpg" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> LISZT (THE BEST OF)</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/LISZT+(THE+BEST+OF)"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain5" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/3347720/13/album-overview-album-list-dropdown" 
-                    id="buyToggle5" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody5" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 3347720);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 3347720);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347720/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 3347720);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 3347720);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347720/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 3347720);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain5', 'buyToggle5', 'buyBody5', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li>
-</ul>                                                    
-                                        <hr />
-                <h2 id="comments" class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/+shoutbox"   >Shouts</a></span></h2>                <div id="shoutbox">
-                                    <div class="shoutboxInput">
-                        <div class="    messageBox
-    infoMessage 
-    ">
-            <span class="messageWrapper">                <strong>Leave a comment.</strong>
-                <a href="/login/">Log in to Last.fm</a> or <a href="/join/">sign up</a> (it’s&nbsp;free).
-            </span>
-    </div>            </div>                                        <ul id="shoutList" class='shouts'><li style="display:none;"></li></ul>
-                                                    
-            </div>                                    
-        </div><!-- .leftColWrapper -->
-    </div><!-- .leftCol -->
-    
-    <div class="mpuTop rightCol">
-        
-        <div id="LastAd_mpu" class="LastAd ad-mpu inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10706;
-    repo.sas_masterflag=0;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10706/S/1339667677/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10706/S/1339667677/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('mpu');</script>
-	</span>
-</div>        
-                
-                            
-
-
- 
-                        
-        
-                             <h2 class="heading"><span class="h2Wrapper">Recent Activity</span></h2> <ul class="minifeedSmall">
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1338465253x29544000x9x46154394x4x0x0_d0x9x-1x1323258721x29544000x9x34914874x4x0x0" class=" clearit loved first odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/piano4evr" title="United States">piano4evr</a> and <a href="/user/ncbrs" title="">ncbrs</a> loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/III.+Tarantella" >III. Tarantella</a>. <span class="date" title="31 May 2012, 11:54">last month</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334200775x312824515x9x30726725x4x0x0_d0x9x-1x1321900141x312824515x9x11767472x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/auxiliadora1" title="Dora Irber, 58, Female, Brazil">auxiliadora1</a> and <a href="/user/AliceInChains15" title="James, 18, United States">AliceInChains15</a> loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/Annees+de+pelerinage,+2nd+year,+Italy,+S161%2FR10b:+No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)" >Annees de pelerinage, 2nd year, Italy, S161/R10b: No. 5. Sonetto 104 del Petrarca…</a>. <span class="date" title="12 Apr 2012, 03:19">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x12x-1x1325062614x3347343x8x46975939x4x46975939x4" class=" clearit added odd ">
- <img class="icon act_added_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/janechang2011" title="">janechang2011</a> added Liszt: Annees De Pelerinage, Vol. 2 to <a href="/user/janechang2011/library" title="">janechang2011’s library</a>. <span class="date" title="28 Dec 2011, 08:56">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1323521115x531355720x9x36424844x4x0x0_d0x9x-1x1323258708x531355720x9x34914874x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/vjdusik" title="">vjdusik</a> and <a href="/user/ncbrs" title="">ncbrs</a> loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/I.+Gondoliera+(Gondolier's+Song)" >I. Gondoliera (Gondolier's Song)</a>. <span class="date" title="10 Dec 2011, 12:45">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x12x-1x1323258728x3347343x8x34914874x4x34914874x4_d0x12x-1x1320699033x3347343x8x19964906x4x19964906x4_d0x12x-1x1294432539x3347343x8x36134163x4x36134163x4_d0x12x-1x1294208465x3347343x8x29101012x4x29101012x4" class=" clearit added odd ">
- <img class="icon act_added_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/rookieracer" title="Daniel Merkling, 49, Male, Germany">rookieracer</a> and 1 other person added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2" >Liszt: Annees De Pelerinage, Vol. 2</a> to their libraries. <span class="date" title="7 Dec 2011, 11:52">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="d0x2x-1x1323258728x304x32x34914874x4x3347343x8" class=" clearit tagged even ">
- <img class="icon act_tagged_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> tagged Liszt: Annees De Pelerinage, Vol. 2 with ‘<a href="/tag/classical" >classical</a>’. <span class="date" title="7 Dec 2011, 11:52">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1323258702x421052695x9x34914874x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)" >No. 7. Apres une lecture du Dante, fantasia quasi una sonata (After Reading Dante)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="7 Dec 2011, 11:51">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1323258690x421052693x9x34914874x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)" >No. 6. Sonetto 123 del Petrarca (Sonnet 123 of Petrarch)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="7 Dec 2011, 11:51">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1323258681x421052691x9x34914874x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)" >No. 4. Sonetto 47 del Petrarca (Sonnet 47 of Petrarch)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="7 Dec 2011, 11:51">December 2011</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1323258675x514722083x9x34914874x4x0x0" class=" clearit loved last even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)" >No. 3. Canzonetta del Salvator Rosa (Canzonetta of Salvador Rosa)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="7 Dec 2011, 11:51">December 2011</span>
- </li>
- </ul> 
-                        
-                                <div id="LastAd_lowermpu" class="LastAd ad-lowermpu inactive">
-    <span> 	
-                    
-    <script>LFM.Adserver.registerAd('lowermpu');</script>
-	</span>
-</div>    </div><!-- .rightCol -->
-    <div id="LastAd_lowerleaderboard" class="LastAd ad-lowerleaderboard inactive">
-    <span> 	
-                    
-    <script>LFM.Adserver.registerAd('lowerleaderboard');</script>
-	</span>
-</div>    
-    </div><!-- #content -->
-
-
-<div id="LastFooter" role="banner">      
-    <div id="footer_ads" class="clearit">
-        <div class="footer_ad_wrapper">
-
-            <div id="LastAd_Footer1" class="LastAd">
-    <a target="_blank" href="http://www.last.fm/community" data-analytics-action="FooterAd" data-analytics-label="AdSlot1_http://www.last.fm/community">        <img src="http://cdn.last.fm/footerads/xx_1_1296580787.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer2" class="LastAd">
-    <a target="_blank" href="http://build.last.fm/" data-analytics-action="FooterAd" data-analytics-label="AdSlot2_http://build.last.fm/">        <img src="http://cdn.last.fm/footerads/xx_2_1299157809.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer3" class="LastAd">
-    <a target="_blank" href="http://www.last.fm/group/Does+It+Scrobble" data-analytics-action="FooterAd" data-analytics-label="AdSlot3_http://www.last.fm/group/Does+It+Scrobble">        <img src="http://cdn.last.fm/footerads/xx_3_1296580681.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer4" class="LastAd last">
-    <a target="_blank" href="http://playground.last.fm/home" data-analytics-action="FooterAd" data-analytics-label="AdSlot4_http://playground.last.fm/home">        <img src="http://cdn.last.fm/footerads/xx_4_1301333110.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            
-        </div><!-- .footer_ad_wrapper -->
-    </div><!-- #footer_ads --> 
-        
-        <ul id="footerStuff" class="clearit">
-        <li></li>
-
-        <li><p id="uploadYourMusic">
-            <strong>Do you make music? Upload it!</strong><br /><a href="/uploadmusic?accountType=artist">Artists</a> or <a href="/uploadmusic?accountType=label">Labels</a>
-        </p></li>
-    </ul><!-- #footerStuff -->
-    
-    <div id="footer_content">
-        <ul id="footerLinks" class="clearit">
-            <li class="first">
-                <dl>
-                    <dt>Learn About Us</dt>
-                    <dd><a href="/about/contact">Contact</a></dd>
-                    <dd><a href="/about">About Us</a></dd>
-                    <dd><a href="/about/team">Team</a></dd>
-                    <dd><a href="/about/jobs">Jobs</a></dd>
-                    <dd><a href="/resources">Media Kit</a></dd>
-                    <dd><a href="/advertise">Advertise</a></dd>
-                    <dd><a href="/legal">Legal</a></dd>
-                </dl>
-            </li>
-            <li>
-                <dl>
-                    <dt>Get Help</dt>
-                    <dd><a href="/help/faq">FAQ</a></dd>
-                    <dd><a href="/forum/21713">Website Support</a></dd>
-                    <dd><a href="/forum/34905">Scrobbler Support</a></dd>
-                    <dd><a href="/group/Last.fm+for+iPhone+and+iPod+Touch/forum/103852">iPhone Support</a></dd>
-                    <dd><a href="http://www.last.fm/group/Last.fm+on+Xbox+LIVE/forum/137848">Xbox LIVE Support</a></dd>
-                    <dd><a href="http://status.last.fm/">System Status</a></dd>
-                </dl>
-            </li>
-        
-            <li>
-                <dl>
-                    <dt>Join In</dt>
-                    <dd><a href="/join">Sign up</a></dd>                                        <dd><a href="/community/users">Find People</a></dd>
-                    <dd><a href="/community/groups">Find Groups</a></dd>
-                    <dd><a href="/forum">Forums</a></dd>
-                    <dd><a href="/help/guidelines">Community Guidelines</a></dd>
-                    <dd><a href="/about/moderators">Moderators</a></dd>
-                </dl>
-            </li>
-            <li class="last">
-                <dl>
-                    <dt>Do More</dt>
-                    <dd><a href="/download">Download Last.fm Scrobbler</a></dd>
-                    <dd><a href="/download#content_ipod">Download iPod Scrobbler</a></dd>
-                    <dd><a href="/hardware/apple">iPhone App</a></dd>
-                    <dd><a href="http://build.last.fm">More Apps</a></dd>
-                    <dd><a href="/music/+free-music-downloads">Free Music Downloads</a></dd>
-                    <dd><a href="/hardware">Hardware</a></dd>
-                    <dd><a href="/tools/charts">Chart Images</a></dd>
-                    <dd><a href="/subscribe">Subscribe</a></dd>
-                    <dd><a href="/api">API</a></dd>
-                </dl>
-            </li>
-        </ul><!-- #footerLinks -->
-        
-        <div id="justCantGetEnough" class="clearit">
-            <blockquote>“We're with the Last.fm.”</blockquote>
-            <p>
-                <strong>More Last.fm Sites:</strong>
-                <a href="http://blog.last.fm/">Blog</a>
-                | <a href="http://musicmanager.last.fm">Music Manager</a>
-                | <a href="http://build.last.fm">Build</a>
-                | <a href="http://playground.last.fm">Playground (Subscriber VIP zone)</a>
-                                    | <a href="http://www.last.fm/bestof/2011">Best of 2011</a>
-                            </p>
-        </div>
-        
-        <div id="legalities">
-            <div id="cbsi_f">
-<form>
-<script>document.write("<div><label class=\"rb_visit_txt\" for=\"cbsi_footer_menu\">Visit other Sites</label><select name=\"cbsi_footer_menu\" id=\"cbsi_footer_menu\" class=\"rb_visit_sel\"><option value=\"\">Select Site</option><option value=\"http://www.bnet.com\">BNET</option><option value=\"http://www.cbscares.com\">CBS Cares</option><option value=\"http://www.cbsfilms.com\">CBS Films</option><option value=\"http://www.cbsradio.com/streaming/index.html\">CBS Radio</option><option value=\"http://www.cbs.com\">CBS.com</option><option value=\"http://www.cbsinteractive.com\">CBSInteractive</option><option value=\"http://www.cbsnews.com\">CBSNews.com</option><option value=\"http://www.cbssports.com\">CBSSports.com</option><option value=\"http://www.chow.com\">CHOW</option><option value=\"http://www.cnet.com\">CNET</option><option value=\"http://collegenetwork.cbssports.com\">College Network</option><option value=\"http://findarticles.com\">Find Articles</option><option value=\"http://www.gamespot.com\">GameSpot</option><option value=\"http://www.help.com\">Help.com</option><option value=\"http://www.last.fm\">Last.fm</option><option value=\"http://www.maxpreps.com\">MaxPreps</option><option value=\"http://www.metacritic.com\">Metacritic.com</option><option value=\"http://moneywatch.bnet.com\">Moneywatch</option><option value=\"http://www.mysimon.com\">mySimon</option><option value=\"http://www.radio.com\">Radio.com</option><option value=\"http://www.search.com\">Search.com</option><option value=\"http://www.shopper.com\">Shopper.com</option><option value=\"http://www.sho.com\">Showtime</option><option value=\"http://www.smartplanet.com\">SmartPlanet</option><option value=\"http://www.techrepublic.com\">TechRepublic</option><option value=\"http://www.theinsider.com\">The Insider</option><option value=\"http://www.tv.com\">TV.com</option><option value=\"http://www.urbanbaby.com\">UrbanBaby.com</option><option value=\"http://www.zdnet.com\">ZDNet</option></select><input type=\"button\" class=\"rb_visit_go\" value=\"Go\" onClick=\"window.location=document.getElementById('cbsi_footer_menu').options[document.getElementById('cbsi_footer_menu').selectedIndex].value;\" /></div>");</script>
-</form>
-  <noscript>
-	<a href="http://www.bnet.com">BNET</a>  | <a href="http://www.cbscares.com">CBS Cares</a>  | <a href="http://www.cbsfilms.com">CBS Films</a>  | <a href="http://www.cbsradio.com/streaming/index.html">CBS Radio</a>  | <a href="http://www.cbs.com">CBS.com</a>  | <a href="http://www.cbsinteractive.com">CBSInteractive</a>  | <a href="http://www.cbsnews.com">CBSNews.com</a>  | <a href="http://www.cbssports.com">CBSSports.com</a>  | <a href="http://www.chow.com">CHOW</a>  | <a href="http://www.cnet.com">CNET</a>  | <a href="http://collegenetwork.cbssports.com">College Network</a>  | <a href="http://findarticles.com">Find Articles</a>  | <a href="http://www.gamespot.com">GameSpot</a>  | <a href="http://www.help.com">Help.com</a>  | <a href="http://www.last.fm">Last.fm</a>  | <a href="http://www.maxpreps.com">MaxPreps</a>  | <a href="http://www.metacritic.com">Metacritic.com</a>  | <a href="http://moneywatch.bnet.com">Moneywatch</a>  | <a href="http://www.mysimon.com">mySimon</a>  | <a href="http://www.radio.com">Radio.com</a>  | <a href="http://www.search.com">Search.com</a>  | <a href="http://www.shopper.com">Shopper.com</a>  | <a href="http://www.sho.com">Showtime</a>  | <a href="http://www.smartplanet.com">SmartPlanet</a>  | <a href="http://www.techrepublic.com">TechRepublic</a>  | <a href="http://www.theinsider.com">The Insider</a>  | <a href="http://www.tv.com">TV.com</a>  | <a href="http://www.urbanbaby.com">UrbanBaby.com</a>  | <a href="http://www.zdnet.com">ZDNet</a> 
-  </noscript>
-</div>        <p id="copy">
-            &copy; 2012 Last.fm Ltd. All rights reserved. | 
-            <a href="/legal/terms" target="_blank">Terms of Use</a> 
-            and <a href="/legal/privacy" target="_blank">Privacy Policy</a> | <span class="date">Updated Mar 22, 2012</span><br />
-        
-                Some user-contributed text on this page is available under the <a href="http://creativecommons.org/licenses/by-sa/3.0/legalcode">Creative Commons Attribution/Share-Alike License</a>.<br />
-        Text may also be available under the <a href="/help/gfdl">GNU Free Documentation License</a>.
-        </p>
-</div><!-- #legalities -->
-
-    </div>
-</div><!-- #LastFooter -->
-
-<div id="multiButtonMenu" style="display: none;">
-    <div>
-        <ul class="lfmDropDownBody">
-            <li class="mAddToLibrary"><a href="#">Add to my Library</a></li>
-            <li class="mAddToFriends"><a href="#">Add to Friends</a></li>
-            
-            <!-- <li class="save"><a href="#">Bookmark</a></li> -->
-            <li class="mSend"><a href="#">Share</a></li>
-            
-            <li class="mLove"><a href="#">Love this track</a></li>
-            <li class="mUnlove"><a href="#">Unlove track</a></li>
-            <li class="mBan"><a href="#">Ban track from radio</a></li>
-            <li class="mUnban"><a href="#">Unban track from radio</a></li>
-
-                                    
-            <li class="mAddTags"><a href="#">Add tags</a></li>
-            <li class="mAddToPlaylist"><a href="#">Add to playlist</a></li>
-            
-            <li class="mRemoveFromLibrary"><a href="#">Remove from your Library</a></li>
-            
-            <li class="mBuy"><a href="#">Buy Track</a></li>
-                        <li class="mMessage"><a href="#">Send a message</a></li>
-                        <li class="mEditDetails"><a href="#">Edit Details</a></li>
-            <li class="mMessageAll"><a href="#">Message All Users</a></li>
-            <li class="mEditPermissions"><a href="#">Edit Permissions</a></li>
-            <li class="mAbdicate"><a href="#">Abdicate</a></li>
-            <li class="mLeave"><a href="#">Leave Group</a></li>
-            
-            <li class="mLoading"><a href="#">&nbsp;</a></li>
-        </ul>
-    </div>
-</div>
-
-
-<script type="text/javascript" src="//dw.com.com/js/dw.js"></script>
-<script type="text/javascript">
-  DW.pageParams = {
-    siteid: '190',
-    ptid: '6693'
-  };
-  DW.tagNielsen = false;
-  DW.clear();
-</script>
-<noscript>
-    <img src="//dw.com.com/clear/c.gif?ts=1339667678&amp;sid=190;" />
-</noscript>
-
-
-
-
-
-<div id="siteSearchAutocomplete" class="autocomplete" style="display: none;"></div>
-
-<script>
-// Search autocomplete
-new LFM.Ajax.SideGroupedMulticompleter('siteSearchBox', 'siteSearchAutocomplete', '/search/autocomplete', {
-    frequency: 0.2,
-    indicator: 'siteSearchProgress',
-    enabled: true
-});
-LFM.Button.MultiButton.setup();
-LFM.Display.setMinHeight();
-</script>
-
-<div id="fb-root"></div>
-
-
-        </div>
-    </div>
-    
-    <!--BEGIN APEX-->
-    <script type="text/javascript" src="http://i.i.com.com/cnwk.1d/Aud/javascript/last/apex.js"></script>
-    <script type="text/javascript">
-        var cbsiApexGlobal = {
-                    'SITE' : '190',
-                    'PTYPE' : '2000'
-                  };
-
-        cbsiRunApexTargets(cbsiApexGlobal, 1000);
-    </script>     
-    <!--END APEX-->    
-    
-
-        
-    <script>
-    
-    // enable XHR wrapper
-    window.ClickTaleSettings = { XHRWrapper: { Enable: true} };
-
-    document.write(unescape("%3Cscript%20src='" +
-(document.location.protocol == 'https:' ?
-  'https://clicktalecdn.sslcs.cdngc.net/' :
-  'http://cdn.clicktale.net/') +
-"www09/ptc/220b3951-66a2-4b8e-ac35-fa58bfb30846.js'%3E%3C/script%3E"));
-
-    </script>
-    
-
-    
-
-    </body>
-</html>
\ No newline at end of file
diff --git a/tests/fixtures/lastfm_wrong_franz_liszt_pelerinage.html b/tests/fixtures/lastfm_wrong_franz_liszt_pelerinage.html
deleted file mode 100644
index 565badb1addab446fbca106ace5bc6ce0ec5c42f..0000000000000000000000000000000000000000
--- a/tests/fixtures/lastfm_wrong_franz_liszt_pelerinage.html
+++ /dev/null
@@ -1,1968 +0,0 @@
-<!DOCTYPE html>
-<html lang="en" class="no-js lastfm">
-<head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge; chrome=1" />
-    <link rel="profile" href="http://purl.org/uF/2008/03/" />
-        <!–[if IE]><![endif]–>
-
-            <title>Liszt: Années de Pèlerinage – Franz Liszt – Listen and discover music at Last.fm</title>        
-        <script>(function(e) { e.className = e.className.replace(/\bno-js\b/,'js'); })(document.documentElement)</script>
-
-    <link rel="search" type="application/opensearchdescription+xml" href="http://cdn.last.fm/opensearch.xml" title="Last.fm" />
-            <meta name="description" content="Listen free to Franz Liszt – Liszt: Années de Pèlerinage (No. 4. Au bord d'une source (Beside a Spring), No. 7. Apres une lecture du Dante, fantasia quasi una sonata (After Reading Dante) and more). 26 tracks (161:01). Liszt: Années de Pèlerinage was released 3 May 2011. Franz Liszt (1811, Doborján, Hungary - 1886, Bayreuth, Germany)(Hungarian: Ferencz Liszt, in modern usage Ferenc Liszt, from 1859 to 1865 officially Franz Ritter von Liszt) (22 October 1811 – 31July 1886) was a Hungarian composer, virtuoso pianist, and teacher. Liszt became renowned throughout Europe for his great skill as a performer during the 1800s. He is said to have been the most technically advanced and perhaps greatest pianist of all time. He was also an important and influential composer, a notable piano teacher, a conductor who contributed significantly to the modern development of the art, and a benefactor to other composers and performers, notably Richard Wagner and Hector Berlioz. Discover more music, concerts, videos, and pictures with the largest catalogue online at Last.fm."/>
-    
-
-        <meta name="robots" content="NOODP" />
-    
-                <meta property="og:site_name" content="Last.fm" />
-<meta property="fb:app_id" content="192959324047861" />
-
-            
-                        
-        <meta property="og:title" content="Franz Liszt – Liszt: Années de Pèlerinage" />
-            <meta property="og:url" content="http://www.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-        <meta property="og:image" content="http://userserve-ak.last.fm/serve/126/65160132.jpg" />
-       <meta property="og:type" content="album" />        
-         
-        <link rel="shortcut icon" href="http://cdn.last.fm/flatness/favicon.2.ico" />
-        <link rel="apple-touch-icon" href="http://cdn.last.fm/flatness/apple-touch-icon.png" />
-    
-        
-        
-            <link rev="canonical" href="http://last.fm/+r54Ke7" />
-    <link rel="shortlink" href="http://last.fm/+r54Ke7" />
-        
-                
-            <link rel="alternate" hreflang="de" href="http://www.lastfm.de/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="es" href="http://www.lastfm.es/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="fr" href="http://www.lastfm.fr/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="it" href="http://www.lastfm.it/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="ja" href="http://www.lastfm.jp/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="pl" href="http://www.lastfm.pl/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="pt" href="http://www.lastfm.com.br/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="ru" href="http://www.lastfm.ru/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="sv" href="http://www.lastfm.se/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="tr" href="http://www.lastfm.com.tr/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-                <link rel="alternate" hreflang="zh" href="http://cn.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" />
-            
-    
-        <style>html {zoom: 1;}</style>    <script>
-
-        if(top !== self && top.location.domain !== self.location.domain) {
-            (function(d, s) {
-                if(s && s.insertRule) {
-                    s.insertRule('body { display: none !important }', 0);
-                } else if(s && s.addRule) {
-                    s.addRule('body', 'display: none !important');
-                }
-                top.location.replace(d.location.href);
-            })(document, document.styleSheets[0]);
-        }
-</script>
-
-                                        <link rel="stylesheet" href="http://cdn.last.fm/css/css/217393/music/album/overview.css" />
-                            <link rel="stylesheet" href="http://cdn.last.fm/css/css/217393/master.css" />
-                        
-        
-<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
-<script>$.noConflict();</script>
-<script src="//ajax.googleapis.com/ajax/libs/prototype/1.7.0.0/prototype.js"></script>
-<script>
-    if(typeof Prototype === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/217393/lib/prototype.js' type='text/javascript'%3E%3C/script%3E"));
-    }
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/217393/prototype.ie.js"></script>
-<script src="//ajax.googleapis.com/ajax/libs/scriptaculous/1.9.0/scriptaculous.js"></script>
-<script>
-    if(typeof Scriptaculous === 'undefined') {
-        document.write(unescape("%3Cscript src='http://cdn.last.fm/javascript/javascript/217393/lib/scriptaculous/scriptaculous.js' type='text/javascript'%3E%3C/script%3E"));
-    }
-</script>
-
-<script src="http://cdn.last.fm/javascript/javascript/217393/lib/mustache.js"/></script>
-
-<script>
-    /* We like defered loading of SoundManager2 */
-    SM2_DEFER = true;
-</script>
-<script src="http://cdn.last.fm/javascript/javascript/217393/lib/sm2-min.js"></script>
-
-<script src="http://cdn.last.fm/javascript/javascript/217393/LFM.js"></script>
-
-<script>
-    LFM.set("ParentResource", {"id":"65734747","type":8,"name":"Liszt: Ann\u00e9es de P\u00e8lerinage","url":"\/music\/Franz+Liszt\/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/65160132.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/65160132.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/65160132.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/65160132\/Liszt+Annes+de+Plerinage.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":26});
-    LFM.Adserver.showAds = true;
-    LFM.set("Session", {"cookieHost":".last.fm","host":"www.last.fm","staticHost":"http:\/\/cdn.last.fm","wsHost":"ws.audioscrobbler.com","userserveHost":"http:\/\/userserve-ak.last.fm","wsKey":"ceec2bb03d4c5929f0d6667fc266dc75","formtoken":"2bcd67b944b9e63a7fd1b2c0c95a8d55947c66b3","location":"fr","language":"en","ajaxhost":"ajax.last.fm","loggedIn":false});
-    LFM.set("resTypes", {
-        EVENT: 29,
-        ARTIST: 6,
-        ALBUM: 8,
-        TRACK: 9,
-        GROUP: 20,
-        TAG: 32,
-        USER: 4,
-        LABEL: 10
-    });
-    LFM.set("resTypeLookup", {
-        29: "Event",
-        6: "Artist",
-        8: "Album",
-        9: "Track",
-        20: "Group",
-        32: "Tag",
-        4: "User",
-        10: "Label"
-    });
-    LFM.set("String", {toRedStr: "Simply Red",toBlackStr: "Paint it Black",okText: "OK",cancelText: "Cancel",clickToEditText: "Click to edit",savingText: "Saving…",loadingText: "Loading…",deletingText: "Deleting…",thereWasAnError: "There was an error.",dialogLoadError: "There was an error loading this dialog.",fileTooBig: "Sorry, the file is too big.",noFile: "Please choose a file.",uploadCancelled: "Upload Cancelled.",deleteMessageTitle: "Delete Message",deleteMessagePrompt: "Are you sure you want to delete this message?",deleteFriendPrompt: "Are you sure you want to delete this friend?",deleteImage: "Are you sure you want to delete this image?",deleteButtonText: "Delete",done: "Done",backText: "Back",yesText: "Yes",noText: "No",saveText: "Save",saveTitle: "Add to profile",sendText: "Send",sendTitle: "Share with friends",addTitle: "Add to library",tagTitle: "Add tags",playlistTitle: "Add to playlist",obsessionTitle: "Personalise your obsession",befriendTitle: "Add a friend",joinTitle: "Join this group",loved: "Loved",RemoveFromLibraryTitle: "Remove from library",uploadImageTitle: "Upload Image",uploadVideoTitle: "Upload Video",usernoteTitle: "Add a note",cleanupBioTitle: "Cleanup Bio",flageventTitle: "Flag for review",setLocationTitle: "Set your Location",newWindowTooltip: "This link will open in a new window",unloadWarningMessage: "This will stop Radio Playback",trackLoved: "You loved this track",playbackStopped: "Playback stopped",loadingTrackInfo: "Loading track information",errorLoadingTrackInfo: "Error loading track information",emailLineup: "Email this",uploadMessages: {mayTakeLonger: "Sorry, this may take slightly longer than usual. Hold on a couple of seconds.",uploading: "Uploading…",endUploading: "Done",progressDisplay: "PERCENTUPLOADED% complete (TRANSFERRATE kb/s) – TIMEREMAINING seconds remaining",progressComplete: "100% complete",failedRetrying: "Failed retrying upload, bailed.",processingMedia: "Processing media…",unsupportedFormat: "Sorry, the file you uploaded isn’t encoded in a supported format. Please try again.",uploadError: "There was an error uploading your video, please verify that the file you are uploading is not too large or of an incorrect format and try again."},shortMonths: {'1': "Jan",'2': "Feb",'3': "Mar",'4': "Apr",'5': "May",'6': "Jun",'7': "Jul",'8': "Aug",'9': "Sep",'10': "Oct",'11': "Nov",'12': "Dec"},resTypePlural: {29: "Events",6: "Artists",8: "Albums",9: "Tracks",20: "Groups",32: "Tags",4: "Users","friends":   "Friends",10: "Labels"}});LFM.set("Element", {icon_loved_indicator: "<img class=\"icon loved_indicator_icon\" width=\"11\" height=\"9\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_tag: "<img class=\"icon tag_icon\" width=\"14\" height=\"14\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_dismiss: "<img class=\"icon dismiss_icon\" width=\"16\" height=\"16\" src=\"http:\/\/cdn.last.fm\/flatness\/clear.gif\" style=\"\" \/>",icon_play: "<img class=\"transparent_png play_icon\" width=\"13\" height=\"13\" alt=\"Play\" src=\"http:\/\/cdn.last.fm\/flatness\/preview\/play_indicator.png\" style=\"\" \/>"});
-</script>
-
-    <script src="http://cdn.last.fm/javascript/javascript/217393/components.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/217393/dialog.js"></script>
-    <script src="http://cdn.last.fm/javascript/javascript/217393/form/typeahead.js"></script>
-
-
-
-
-<script>
-    LFM.Social.networks = {};
-    LFM.Social.networks.facebook = new LFM.Social.Facebook("en_US", "http%3A%2F%2Fwww.last.fm%2Ffacebook-channel.php%3Flang%3Den_US");
-    LFM.Social.networks.twitter = new LFM.Social.Twitter();
-    LFM.Social.networks.plusone = new LFM.Social.Plusone("");
-</script>
-
-
-<script>
-
-LFM.Page.Tracker = new LFM.Analytics.Tracker('Music/Album/Overview', window.location.host);
-
-document.observe('dom:loaded', function() {
-    
-    LFM.Page.Tracker.bindOutboundLinkListener();
-    LFM.Page.Tracker.bindEventListener();
-    LFM.Page.Tracker.bindSocialListeners();
-
-});
-
-</script>
-
-
-        
-    <script>document.observe("dom:loaded", function () { if (typeof ieHover !== 'undefined') ieHover.setUp(); });</script>
-    
-    <script>
-var _gaq = _gaq || [];
-
-
-_gaq.push(['pT._setAccount', 'UA-1966571-6'], ['mT._setAccount', 'UA-28600396-1'], ['eT._setAccount', 'UA-1966571-8'], ['cbsiT._setAccount', 'UA-27653683-1']);
-_gaq.push(['cbsiT._setAllowLinker', true], ['cbsiT._setDomainName', 'www.last.fm'], ['cbsiT._setSampleRate', '1']);
-
-</script>
-<script>
-
-_gaq.push(['pT._setCustomVar', 1, 'PageRegistrationStatus', 'LoggedOut', 3]);
-_gaq.push(['eT._setCustomVar', 1, 'PageRegistrationStatus', 'LoggedOut', 3]);
-_gaq.push(function () {
-    var newValue     = "Anonymous",
-        pageTracker  = _gat._getTrackerByName('pT'),
-        eventTracker = _gat._getTrackerByName('eT'),
-        oldValue = pageTracker._getVisitorCustomVar(2),
-        setValue = false;
-
-    
-    if (!oldValue) {
-        setValue = true;
-    } else if (oldValue === newValue) {
-        setValue = false;
-    } else if (oldValue !== newValue && newValue !== 'Anonymous') {
-        setValue = true;
-    }
-
-    if (setValue) {
-        pageTracker._setCustomVar(2, 'VisitorStatus', newValue, 1);
-        eventTracker._setCustomVar(2, 'VisitorStatus', newValue, 1);
-    }
-    
-});
-_gaq.push(['pT._setCustomVar', 4, 'Artist', "Franz Liszt", 3]);
-_gaq.push(['eT._setCustomVar', 4, 'Artist', "Franz Liszt", 3]);
-LFM.Page.Tracker.trackPageview = function(url) {
-    if(!url) {
-        _gaq.push(['pT._trackPageview', 'music/album/overview'], ['mT._trackPageview'], ['eT._trackPageview', 'music/album/overview'], ['cbsiT._trackPageview']);
-    } else {
-        _gaq.push(['pT._trackPageview', 'music/album/overview'], ['mT._trackPageview', url], ['eT._trackPageview', 'music/album/overview'], ['cbsiT._trackPageview', url]);       
-    }   
-}; 
-LFM.Page.Tracker.trackPageview();
-
-
-
-(function(d) {
-    var ga = d.createElement('script'); ga.async = true;
-    ga.src = ('https:' == d.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; 
-    var s = d.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-})(document);
-
-</script></head>
-
-
-
-<!--[if lt IE 7 ]> <body class="r-album a-overview lang-en ie ie6"> <![endif]-->
-<!--[if IE 7 ]>    <body class="r-album a-overview lang-en ie ie7"> <![endif]-->
-<!--[if IE 8 ]>    <body class="r-album a-overview lang-en ie ie8"> <![endif]-->
-<!--[if IE 9 ]>    <body class="r-album a-overview lang-en ie ie9"> <![endif]-->
-<!--[if (gt IE 9)|!(IE)]><!--> <body class="r-album a-overview lang-en"> <!--<![endif]-->
-
-
-        <script>var WRInitTime = +new Date();</script>
-    
-                <div id="fauxHeaderContainer" class="clearit">
-            <div id="fauxHeader"></div>
-        </div>
-        <div id="page" class="            ">
-        <div class="fiflufi">
-            
-
-<div id="header" class="clearit" role="banner">
-    <div id="headerWrapper">
-        
-        <a href="/" id="lastfmLogo">Last.fm</a>
-        
-        <ul id="primaryNav" role="navigation">
-            <li id="musicNav" class="navItem">
-                <a href="/music" class="nav-link">Music</a>
-            </li>
-            <li id="listenNav" class="navItem">
-                <a href="/listen" class="nav-link">Radio</a>
-            </li>
-            <li id="eventsNav" class="navItem">
-                <a href="/events" class="nav-link">Events</a>
-            </li>
-            <li id="chartsNav" class="navItem">
-                <a href="/charts" class="nav-link">Charts</a>
-            </li>
-            <li id="communityNav" class="navItem">
-                <a href="/community" class="nav-link">Community</a>
-            </li>
-        </ul>
-        
-        <div id="profileLinks">
-    <ul>
-            <li id="loginLink" class="profileItem">
-            <a href="/login" class="profile-link"><strong>Login</strong></a>
-        </li>
-        <li id="signupLink" class="profileItem">
-            <a href="/join" class="profile-link"><strong>Join</strong></a>
-        </li>
-        </ul>
-</div>               
-        <div id="headerLinks">
-                                    <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?change=language" title="Click here to change your language" rel="nofollow" id="headerLangToggle" class="icon">
-            <img class="transparent_png globe_icon icon" alt="Change language" width="11" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />            <span>English</span>
-        </a> | 
-            <a href="/help">Help</a>
-</div>
-
-<form id="siteSearch" method="get" action="/search" class="autocomplete" role="search">
-    <img src="http://cdn.last.fm/flatness/clear.gif" width="16" height="16" id="siteSearchProgress" style="display: none;" />
-    <input id="siteSearchBox" type="text" name="q" autocomplete="off" placeholder="Music search" size="26" />
-    <input type="hidden" name="from" value="ac" />
-    <button id="siteSearchSubmit" type="submit" class="submit" title="Search"></button>
-</form>
-
-<script>
-    LFM.set('String', {
-        'siteSearchViewAll': "Search for ‘QUERY’",
-        'siteSearchSuggestions': "Popular suggestions",
-        'siteSearchNoSuggestions': "No suggestions…",
-        'autocompletePersonalDataDown': "Friends, groups and labels search is currently unavailable."
-    });
-</script>
-        
-        <div id="headerPromo">
-                                                            
-                                                
-                
-                <a href="/discover">Last.fm/discover: find your next favourite band »</a>                        
-        </div>
-        
-    </div><!-- #headerWrapper -->
-</div><!-- #header -->
-<script>LFM.Display.setupHeader();</script>
-
-
-
-                   
-
-<div id="LastAd_beacon" class="LastAd ad-beacon inactive">
-    <span> 	
-            <script type="text/javascript">
-sas_tmstp=Math.round(Math.random()*10000000000);
-sas_pageid='30463/211758';
-sas_target='Gender=;Age=;Logged=0;Tag=f liszt;ID=album-65734747';
-
-function SmartAdServer(sas_pageid,sas_formatid,sas_target) {
-    if (sas_masterflag==1) {sas_masterflag=0;sas_master='M';} else {sas_master='S';};
-    this.document.write('<scr'+'ipt src="http://www4.smartadserver.com/call/pubj/' + sas_pageid + '/' + sas_formatid + '/' + sas_master + '/' + sas_tmstp + '/' + escape(sas_target) + '?"></scr'+'ipt>');
-}
-
-</script>        
-    <script>LFM.Adserver.registerAd('beacon');</script>
-	</span>
-</div>
-    <div id="LastAd_skin" class="LastAd ad-skin inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10720;
-    repo.sas_masterflag=1;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10720/M/1339664215/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10720/M/1339664215/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('skin');</script>
-	</span>
-</div>
-    
-<ul id="langSelector"  style="display: none;" class="nojs">
-                
-        
-                <li class="de">
-            <a href="http://www.lastfm.de/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=de" class="icon">
-                                <img class="icon flag_de_icon" alt="Deutsch" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Deutsch</span>
-            </a>
-        </li>
-                    <li class="es">
-            <a href="http://www.lastfm.es/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=es" class="icon">
-                                <img class="icon flag_es_icon" alt="Español" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Español</span>
-            </a>
-        </li>
-                    <li class="fr">
-            <a href="http://www.lastfm.fr/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=fr" class="icon">
-                                <img class="icon flag_fr_icon" alt="Français" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Français</span>
-            </a>
-        </li>
-                    <li class="it">
-            <a href="http://www.lastfm.it/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=it" class="icon">
-                                <img class="icon flag_it_icon" alt="Italiano" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Italiano</span>
-            </a>
-        </li>
-                    <li class="ja">
-            <a href="http://www.lastfm.jp/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=jp" class="icon">
-                                <img class="icon flag_jp_icon" alt="日本語" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>日本語</span>
-            </a>
-        </li>
-                    <li class="pl">
-            <a href="http://www.lastfm.pl/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=pl" class="icon">
-                                <img class="icon flag_pl_icon" alt="Polski" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Polski</span>
-            </a>
-        </li>
-                    <li class="pt">
-            <a href="http://www.lastfm.com.br/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=pt" class="icon">
-                                <img class="icon flag_pt_icon" alt="Português" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Português</span>
-            </a>
-        </li>
-                    <li class="ru">
-            <a href="http://www.lastfm.ru/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=ru" class="icon">
-                                <img class="icon flag_ru_icon" alt="Руccкий" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Руccкий</span>
-            </a>
-        </li>
-                    <li class="sv">
-            <a href="http://www.lastfm.se/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=sv" class="icon">
-                                <img class="icon flag_se_icon" alt="Svenska" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Svenska</span>
-            </a>
-        </li>
-                    <li class="tr">
-            <a href="http://www.lastfm.com.tr/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=tr" class="icon">
-                                <img class="icon flag_tr_icon" alt="Türkçe" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>Türkçe</span>
-            </a>
-        </li>
-                    <li class="zh">
-            <a href="http://cn.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage?setlang=zh" class="icon">
-                                <img class="icon flag_zh_icon" alt="简体中文" width="16" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" />                <span>简体中文</span>
-            </a>
-        </li>
-        
-</ul>
-<script>
-
-    $("langSelector").className = "js";
-    LFM.set("Page", {
-        navDropDown: new LFM.Display.DropDown(
-            "headerLangToggle",
-            "headerLangToggle",
-            "langSelector",
-            {
-                align: "left",
-                onShow: function (dropdown) {
-                    dropdown.ddbody.setStyle({
-                        top: (dropdown.ddbody.getStyle("top").toPixels() + 2) + "px"
-                    });
-                }
-            }
-        )
-    });
-</script>
-
-<div id="LastAd_leaderboard" class="LastAd ad-leaderboard inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10710;
-    repo.sas_masterflag=0;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10710/S/1339664215/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10710/S/1339664215/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('leaderboard');</script>
-	</span>
-</div><div id="content">
-    <div><!-- This containing div fixes an IE bug where the absolutely positioned element disappears randomly. Don’t ask me why. -->
-    <div id="secondaryNavigation" role="navigation">
-                                <ul>
-        <li class=" first "><a href="/music/Franz+Liszt">Artist</a></li>    <li><a href="/music/Franz+Liszt/+wiki">Biography</a></li>    <li><a href="/music/Franz+Liszt/+images">Pictures</a></li>    <li><a href="/music/Franz+Liszt/+videos">Videos</a></li>    <li class=" current "><a href="/music/Franz+Liszt/+albums">Albums</a></li>    <li><a href="/music/Franz+Liszt/+tracks">Tracks</a></li>    <li><a href="/music/Franz+Liszt/+events">Events</a></li>    <li><a href="/music/Franz+Liszt/+news">News</a></li>    <li><a href="/music/Franz+Liszt/+charts">Charts</a></li>    <li><a href="/music/Franz+Liszt/+similar">Similar Artists</a></li>    <li><a href="/music/Franz+Liszt/+tags">Tags</a></li>    <li><a href="/music/Franz+Liszt/+listeners">Listeners</a></li>    <li><a href="/music/Franz+Liszt/+journal">Journal</a></li>    <li class="last"><a href="/music/Franz+Liszt/+groups">Groups</a></li>
-</ul>                </div>
-</div>    
-    <div class="leftCol">
-        <div class="leftColWrapper" itemscope itemtype="http://schema.org/MusicAlbum">
-            
-                        
-            <div class="album-breadcrumb breadcrumb">
-    <a href="/music/Franz+Liszt"   >Franz Liszt</a> &raquo; <span>Liszt: Années de Pèlerinage</span></div>            
-                        <div id="catalogueHead" class="catalogueHead albumHead clearit">
-                
-                                
-                <div class="albumCover">
-                    <span id="albumCover" class="albumCover coverMega"><img  width="174" src="http://userserve-ak.last.fm/serve/174s/65160132.jpg" class="art"  id="albumCover" class="albumCover coverMega"  itemprop="image" /><span class="jewelcase"></span></span>                
-                                    </div>
-
-                                                    <ul class="playlinks">
-    <li>
-        <a href="http://www.last.fm/affiliate/byid/8/65734747/6/albumpage/0" class="provider" data-analytics-action="Playlink" data-analytics-label="Spotify" target="_blank" rel="nofollow">
-
-            <span class="icon-wrapper">
-                                    <img class="icon ss-spotify_icon favicon" alt="Spotify" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" />                            </span>
-
-                            Search on <strong>Spotify</strong>
-                    </a>
-            </li>
-</ul>                
-                <h1><b itemprop="name">Liszt: Années de Pèlerinage</b> by <a href="/music/Franz+Liszt"   >Franz Liszt</a></h1>
-                <span itemprop="byArtist" class="hide" itemscope itemtype="http://www.schema.org/MusicGroup">
-                    <meta itemprop="name" content="Franz Liszt" />
-                </span>
-                
-                                <p class="stats">
-                    110 plays                    <meta itemprop="interactionCount" content="UserPlays:110" />
-                    <span id="listenerCount" data-listener-count="10">                    (10 listeners)
-                    </span>
-                    <br />
-                                            <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage"    id="inLibraryIndicatorForArtist" style="display: none;">In your library (0 plays)</a>                                    </p>
-                                
-                <div class="buttons">
-                    <div id="buyContain1" class="lfmDropDown buyButton">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/65734747/13/album-overview-top-dropdown" 
-                    id="buyToggle1" 
-                    target="_blank"
-                    class="lfmButton lfmBigButton lfmBigBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody1" class="lfmDropDownBody lfmBuyDropDownBody lfmBigBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/65734747/13/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 65734747);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/65734747/44/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 65734747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/65734747/24/album-overview-top-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 65734747);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/65734747/1/album-overview-top-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 65734747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/65734747/90/album-overview-top-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 65734747);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain1', 'buyToggle1', 'buyBody1', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div>                                            <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage"    id="button1" class="lfmButton lfmBigButton lfmAddButton 
-"><strong>Add to my Library</strong></a>
-    <script>
-(function () {
-    function showDialog () {
-        LFM.Add({"id":"65734747","type":8,"name":"Liszt: Ann\u00e9es de P\u00e8lerinage","url":"\/music\/Franz+Liszt\/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/65160132.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/65160132.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/65160132.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/65160132\/Liszt+Annes+de+Plerinage.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":26}, {
-            parameters: null
-                        
-                                     
-             
-                    });
-    }
-        $("button1") && $("button1").observe("click", function (e) {
-        e.stop();
-                    LFM.Page.Tracker.storeTagSource("addToLibraryBtn");
-                showDialog();
-    });
-})()
-</script>
-
-<script></script>                                        
-                </div>
-                
-                                    <div class="tags">
-                                                    <p>
-                                Popular tags:
-                                                                    
-                                    
-                                    <meta itemprop="keywords" content="f liszt">
-                                    
-                                    
-                                    <a href="/tag/f%20liszt" rel="tag">f liszt</a>
-                                                                                                                               </p>
-                    </div>
-                                <p class="shoutcount">
-                    Shouts: <span class="shoutCount">
-    <a href="#shoutbox" id="shoutBoxLink"  class="icon" data-analytics-action="ShoutCountLink">
-        <img class="icon comment_icon" width="13" height="11" src="http://cdn.last.fm/flatness/clear.gif" style="" /><span>Add shout</span>
-    </a>
-</span>                </p>
-                
-                                <div id="sharebar" class="s-resource">
-    <strong>
-                        Share this album:
-                </strong>
-    <ul id="sharebuttons">
-                <li class="twt-share">
-            <a href="http://twitter.com/share?url=http%3A%2F%2Fwww.last.fm%2Fmusic%2FFranz%2BLiszt%2FLiszt%3A%2BAnn%25C3%25A9es%2Bde%2BP%25C3%25A8lerinage&amp;text=Check%20out%20Franz%20Liszt%20%E2%80%93%20Liszt%3A%20Ann%C3%A9es%20de%20P%C3%A8lerinage&amp;lang=en&amp;related=Lastfm_Trends&amp;count=none&amp;via=lastfm" class="twitter-share-button">Tweet</a>
-        </li>
-                <li class="google-plus1">
-            <g:plusone size="medium" count="false" callback="trackPlusone" href="http://www.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage"></g:plusone>
-            <script>
-
-                LFM.Social.networks.plusone.onReady(function(plusoneAPI) {
-                    plusoneAPI.plusone.go("sharebuttons");
-                });
-</script>
-        </li>
-                <li class="lfm-share">
-            <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage"    id="button2" class="lfmButton lfmBigButton lfmSendButton 
-"><strong>Send</strong></a>
-    <script>
-(function () {
-    function showDialog () {
-        LFM.Send({"id":"65734747","type":8,"name":"Liszt: Ann\u00e9es de P\u00e8lerinage","url":"\/music\/Franz+Liszt\/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage","image":{"small":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","smallsquare":"http:\/\/userserve-ak.last.fm\/serve\/34s\/65160132.jpg","medium":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","mediumsquare":"http:\/\/userserve-ak.last.fm\/serve\/64s\/65160132.jpg","large":"http:\/\/userserve-ak.last.fm\/serve\/126\/65160132.jpg","largesquare":"http:\/\/userserve-ak.last.fm\/serve\/126s\/65160132.jpg","mega":"http:\/\/userserve-ak.last.fm\/serve\/174s\/65160132.jpg","original":"http:\/\/userserve-ak.last.fm\/serve\/_\/65160132\/Liszt+Annes+de+Plerinage.jpg"},"artistname":"Franz Liszt","streamable":true,"numtracks":26}, {
-            parameters: null
-                        
-                                     
-             
-                    });
-    }
-        $("button2") && $("button2").observe("click", function (e) {
-        e.stop();
-                    LFM.Page.Tracker.storeTagSource("shareBtn");
-                showDialog();
-    });
-})()
-</script>
-
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage", "Album");</script>        </li>
-                <!--[if !(lt IE 7)]><!-->         <li class="fbk-share">
-            <fb:like href="http://www.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage" layout="button_count" show_faces="false" action="like" font="lucida grande" ref="sharebar"></fb:like>
-        </li>
-        <!--<![endif]-->
-    </ul>
-    <script>LFM.Page.Tracker.storeResourceTypeForURL("http://www.last.fm/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage", "Album");</script>
-    
-</div>                
-            </div>
-            
-                                        <hr />
-                <h2 class="heading"><span class="h2Wrapper">Tracklist</span></h2>                
-                <table id="albumTracklist" class="candyStriped chart" odd="1">
-                            <thead>
-                <td class="positionCell">&nbsp;</td>
-                <td class="playbuttonCell">&nbsp;</td>
-                <td class="subjectCell">Track</td>
-                <td class="lovedCell">&nbsp;</td>
-                <td class="multibuttonCell">&nbsp;</td>
-                <td class="durationCell">Duration</td>
-                <td class="reachCell">Listeners</td>
-            </thead>
-            <tbody>
-        <tr class="first odd streamable" id="r9_420845029_742043773" data-track-id="420845029"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                1            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845029" href="/music/Franz+Liszt/_/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)"    album=""><span itemprop="name">No. 1. La chapelle de Guillaume Tell (The Chapel of William Tell)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:23
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_420845030_800221294" data-track-id="420845030"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                2            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845030" href="/music/Franz+Liszt/_/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)"    album=""><span itemprop="name">No. 2. Au lac de Wallenstadt (At the Lake of  Wallenstadt)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:15
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="odd streamable" id="r9_420845033_1497700485" data-track-id="420845033"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                3            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845033" href="/music/Franz+Liszt/_/No.+3.+Pastorale+(Pastoral)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+3.+Pastorale+(Pastoral)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Pastorale+(Pastoral)"    album=""><span itemprop="name">No. 3. Pastorale (Pastoral)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Pastorale+(Pastoral)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+3.+Pastorale+(Pastoral)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    1:36
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_112629908_1236694741" data-track-id="112629908"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                4            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="112629908" href="/music/Franz+Liszt/_/No.+4.+Au+bord+d'une+source+(Beside+a+Spring)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+4.+Au+bord+d'une+source+(Beside+a+Spring)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Au+bord+d'une+source+(Beside+a+Spring)"    album=""><span itemprop="name">No. 4. Au bord d'une source (Beside a Spring)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Au+bord+d'une+source+(Beside+a+Spring)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+4.+Au+bord+d'une+source+(Beside+a+Spring)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:48
-            </td>
-                        <td class="reachCell">
-                230
-            </td>
-                </tr><tr class="odd streamable" id="r9_420845038_762927385" data-track-id="420845038"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                5            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845038" href="/music/Franz+Liszt/_/No.+5.+Orage+(Storm)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+5.+Orage+(Storm)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Orage+(Storm)"    album=""><span itemprop="name">No. 5. Orage (Storm)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Orage+(Storm)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+5.+Orage+(Storm)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    4:14
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_420845039_1294088760" data-track-id="420845039"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                6            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845039" href="/music/Franz+Liszt/_/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)"    album=""><span itemprop="name">No. 6. Vallee d'Obermann (Valley of Obermann)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    12:10
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_420845040_968225804" data-track-id="420845040"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                7            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845040" href="/music/Franz+Liszt/_/No.+7.+Eclogue+(Eclogue)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+7.+Eclogue+(Eclogue)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Eclogue+(Eclogue)"    album=""><span itemprop="name">No. 7. Eclogue (Eclogue)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Eclogue+(Eclogue)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+7.+Eclogue+(Eclogue)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:46
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_420845041_1352546372" data-track-id="420845041"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                8            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845041" href="/music/Franz+Liszt/_/No.+8.+Le+mal+du+pays+(Homesickness)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+8.+Le+mal+du+pays+(Homesickness)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+8.+Le+mal+du+pays+(Homesickness)"    album=""><span itemprop="name">No. 8. Le mal du pays (Homesickness)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+8.+Le+mal+du+pays+(Homesickness)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+8.+Le+mal+du+pays+(Homesickness)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    4:57
-            </td>
-                        <td class="reachCell">
-                3
-            </td>
-                </tr><tr class="odd streamable" id="r9_420845042_243566866" data-track-id="420845042"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                9            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420845042" href="/music/Franz+Liszt/_/No.+9.+Les+cloches+de+Geneve+(The+Bells+of+Geneva)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+9.+Les+cloches+de+Geneve+(The+Bells+of+Geneva)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+9.+Les+cloches+de+Geneve+(The+Bells+of+Geneva)"    album=""><span itemprop="name">No. 9. Les cloches de Geneve (The Bells of Geneva)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+9.+Les+cloches+de+Geneve+(The+Bells+of+Geneva)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+9.+Les+cloches+de+Geneve+(The+Bells+of+Geneva)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:25
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_514722080_322907991" data-track-id="514722080"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                1            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514722080" href="/music/Franz+Liszt/_/No.+1.+Sposalizio+(Marriage+of+the+Virgin)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+1.+Sposalizio+(Marriage+of+the+Virgin)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Sposalizio+(Marriage+of+the+Virgin)"    album=""><span itemprop="name">No. 1. Sposalizio (Marriage of the Virgin)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Sposalizio+(Marriage+of+the+Virgin)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+1.+Sposalizio+(Marriage+of+the+Virgin)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    8:36
-            </td>
-                        <td class="reachCell">
-                0
-            </td>
-                </tr><tr class="odd streamable" id="r9_514722081_1290756919" data-track-id="514722081"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                2            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514722081" href="/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Il+penseroso+(The+Thinker)"    album=""><span itemprop="name">No. 2. Il penseroso (The Thinker)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Il+penseroso+(The+Thinker)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+2.+Il+penseroso+(The+Thinker)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    4:39
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_514722083_883377641" data-track-id="514722083"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                3            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514722083" href="/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"    album=""><span itemprop="name">No. 3. Canzonetta del Salvator Rosa (Canzonetta of Salvador Rosa)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+3.+Canzonetta+del+Salvator+Rosa+(Canzonetta+of+Salvador+Rosa)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    2:55
-            </td>
-                        <td class="reachCell">
-                3
-            </td>
-                </tr><tr class="odd streamable" id="r9_421052691_1716961999" data-track-id="421052691"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                4            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052691" href="/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"    album=""><span itemprop="name">No. 4. Sonetto 47 del Petrarca (Sonnet 47 of Petrarch)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+4.+Sonetto+47+del+Petrarca+(Sonnet+47+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:23
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="streamable" id="r9_421052692_6425826" data-track-id="421052692"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                5            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052692" href="/music/Franz+Liszt/_/No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"    album=""><span itemprop="name">No. 5. Sonetto 104 del Petrarca (Sonnet 104 of Petrarch)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+5.+Sonetto+104+del+Petrarca+(Sonnet+104+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:33
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="odd streamable" id="r9_421052693_348992254" data-track-id="421052693"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                6            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052693" href="/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"    album=""><span itemprop="name">No. 6. Sonetto 123 del Petrarca (Sonnet 123 of Petrarch)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+6.+Sonetto+123+del+Petrarca+(Sonnet+123+of+Petrarch)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    7:08
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="streamable" id="r9_421052695_1136300527" data-track-id="421052695"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                7            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="421052695" href="/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"    album=""><span itemprop="name">No. 7. Apres une lecture du Dante, fantasia quasi una sonata (After Reading Dante)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+7.+Apres+une+lecture+du+Dante,+fantasia+quasi+una+sonata+(After+Reading+Dante)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    16:03
-            </td>
-                        <td class="reachCell">
-                5
-            </td>
-                </tr><tr class="odd streamable" id="r9_455481324_1562636624" data-track-id="455481324"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                8            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="455481324" href="/music/Franz+Liszt/_/No.+1.+Gondoliera+(Gondolier's+Song)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+1.+Gondoliera+(Gondolier's+Song)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Gondoliera+(Gondolier's+Song)"    album=""><span itemprop="name">No. 1. Gondoliera (Gondolier's Song)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Gondoliera+(Gondolier's+Song)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+1.+Gondoliera+(Gondolier's+Song)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    5:05
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_514747284_394262470" data-track-id="514747284"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                9            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514747284" href="/music/Franz+Liszt/_/No.+2.+Canzone+(Song)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+2.+Canzone+(Song)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Canzone+(Song)"    album=""><span itemprop="name">No. 2. Canzone (Song)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Canzone+(Song)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+2.+Canzone+(Song)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:23
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_454475053_1104465852" data-track-id="454475053"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                10            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="454475053" href="/music/Franz+Liszt/_/No.+3.+Tarantella"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+3.+Tarantella">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Tarantella"    album=""><span itemprop="name">No. 3. Tarantella</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Tarantella"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+3.+Tarantella", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    8:53
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="streamable" id="r9_514747281_297660587" data-track-id="514747281"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                1            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514747281" href="/music/Franz+Liszt/_/No.+1.+Angelus!+Priere+aux+anges+gardiens+(Angelus.+Prayer+to+the+Guardian+Angels)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+1.+Angelus!+Priere+aux+anges+gardiens+(Angelus.+Prayer+to+the+Guardian+Angels)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Angelus!+Priere+aux+anges+gardiens+(Angelus.+Prayer+to+the+Guardian+Angels)"    album=""><span itemprop="name">No. 1. Angelus! Priere aux anges gardiens (Angelus. Prayer to the Guardian Angels)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+Angelus!+Priere+aux+anges+gardiens+(Angelus.+Prayer+to+the+Guardian+Angels)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+1.+Angelus!+Priere+aux+anges+gardiens+(Angelus.+Prayer+to+the+Guardian+Angels)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    7:50
-            </td>
-                        <td class="reachCell">
-                0
-            </td>
-                </tr><tr class="odd streamable" id="r9_514747282_2098144514" data-track-id="514747282"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                2            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514747282" href="/music/Franz+Liszt/_/No.+2.+Aux+cypres+de+la+Villa+d'Este+I+(To+the+Cypresses+of+the+Villa+d'Este+I:+Threnody)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+2.+Aux+cypres+de+la+Villa+d'Este+I+(To+the+Cypresses+of+the+Villa+d'Este+I:+Threnody)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Aux+cypres+de+la+Villa+d'Este+I+(To+the+Cypresses+of+the+Villa+d'Este+I:+Threnody)"    album=""><span itemprop="name">No. 2. Aux cypres de la Villa d'Este I (To the Cypresses of the Villa d'Este I:…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Aux+cypres+de+la+Villa+d'Este+I+(To+the+Cypresses+of+the+Villa+d'Este+I:+Threnody)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+2.+Aux+cypres+de+la+Villa+d'Este+I+(To+the+Cypresses+of+the+Villa+d'Este+I:+Threnody)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    5:41
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="streamable" id="r9_420901785_1747313643" data-track-id="420901785"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                3            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420901785" href="/music/Franz+Liszt/_/No.+3.+Aux+cypres+de+la+Villa+d'Este+II+(To+the+Cypresses+of+the+Villa+d'Este+II:+Threnody)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+3.+Aux+cypres+de+la+Villa+d'Este+II+(To+the+Cypresses+of+the+Villa+d'Este+II:+Threnody)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Aux+cypres+de+la+Villa+d'Este+II+(To+the+Cypresses+of+the+Villa+d'Este+II:+Threnody)"    album=""><span itemprop="name">No. 3. Aux cypres de la Villa d'Este II (To the Cypresses of the Villa d'Este II:…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Aux+cypres+de+la+Villa+d'Este+II+(To+the+Cypresses+of+the+Villa+d'Este+II:+Threnody)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+3.+Aux+cypres+de+la+Villa+d'Este+II+(To+the+Cypresses+of+the+Villa+d'Este+II:+Threnody)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    9:30
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="odd streamable" id="r9_420901786_366536575" data-track-id="420901786"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                4            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420901786" href="/music/Franz+Liszt/_/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)"    album=""><span itemprop="name">No. 4. Les jeux d'eau a la Villa d'Este (The Fountains of the Villa d'Este)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:25
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="streamable" id="r9_420901787_2095343421" data-track-id="420901787"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                5            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="420901787" href="/music/Franz+Liszt/_/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))"    album=""><span itemprop="name">No. 5. Sunt lacrymae rerum (en mode hongrois) (There are Tears for Things (In The…</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    6:16
-            </td>
-                        <td class="reachCell">
-                2
-            </td>
-                </tr><tr class="odd streamable" id="r9_514747283_1713330583" data-track-id="514747283"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                6            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="514747283" href="/music/Franz+Liszt/_/No.+6.+March+funebre+(Funeral+March)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+6.+March+funebre+(Funeral+March)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+March+funebre+(Funeral+March)"    album=""><span itemprop="name">No. 6. March funebre (Funeral March)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+March+funebre+(Funeral+March)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+6.+March+funebre+(Funeral+March)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    5:44
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr><tr class="last streamable" id="r9_457090547_609576642" data-track-id="457090547"  itemprop="tracks" itemscope itemtype="http://schema.org/MusicRecording">
-                                            <td class="positionCell">
-                7            </td>
-            <td class="playbuttonCell">
-                <a rel="nofollow" class="previewbutton " data-track-id="457090547" href="/music/Franz+Liszt/_/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)"><img class="icon preview_icon" width="16" height="16" src="http://cdn.last.fm/flatness/clear.gif" style="" /></a>            </td>
-            <td class="subjectCell">
-                                <meta itemprop="url" content="http://www.last.fm/music/Franz+Liszt/_/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)">
-                <meta itemprop="inAlbum" content="Liszt: Années de Pèlerinage">
-                                
-                                                                                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)"    album=""><span itemprop="name">No. 7. Sursum corda (Lift up Your Hearts)</span></a>                                                </td>
-            <td class="lovedCell">
-                            </td>
-                                                    <td class="multibuttonCell">
-                <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)"    class="             
-            mAddToLibrary
-                mSend        mAddTags
-                mAddToPlaylist
-                        lfmButton lfmMultiButton lfmButtonFortrack lfmSmallButton lfmSmallMultiButton lfmMultiButtonFull
-" forcelink="1"><span></span></a>
-<script>LFM.Page.Tracker.storeResourceTypeForURL("/music/Franz+Liszt/_/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)", "Track");</script>            </td>
-            <td class="durationCell">
-                                                            <meta itemprop="duration" content="PT0M30S">
-                                                    3:23
-            </td>
-                        <td class="reachCell">
-                1
-            </td>
-                </tr>
-        </tbody>
-</table>                <hr />
-                <a style="margin-top: 1em;" class="stationbutton stationbuttonLarge" href="/listen/artist/Franz%2BLiszt/similarartists" data-analytics-action="PlayRadioButton" data-analytics-label="Login">
-    <span class="stationButtonWrapper">
-            <strong>Play Franz Liszt Radio</strong>
-                                                                                        <p>
-                                     With: Robert Schumann, Johannes Brahms, Frédéric Chopin, Franz Schubert and more… 
-                            </p>
-                </span>
-</a>                                                           
-                        <hr />
-            <h2 class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/+wiki"   >About this album</a></span></h2>            <div class="albumInfo clearit withLabelImage">
-                <a href="/label/haenssler+CLASSIC"   ><img height="17" width="34" alt="" src="http://userserve-ak.last.fm/serve/34/54879567.png" /></a>                                <span class="albumLabel"><a href="/label/haenssler+CLASSIC"   >haenssler CLASSIC</a> (2011)</span>                                    <span class="albumDate">Released: 3 May 2011</span>                                                <span class="albumTracks">26 tracks <span dir="ltr">(161:01)</span></span>
-                            </div>
-
-                                        
-
- <div class="wiki">
- <div id="wikiAbstract" class="wiki-abstract">
- <div class=" messageBox
- infoMessage 
- ">
- <span class="messageWrapper"> We don’t have a description for this album yet, <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/+wiki/edit" >care to help</a>?
- </span>
- </div> </div>
- </div>
-
-                        
-                        
-                                        <hr />
-                <h2 class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/+albums"   >Other releases from this artist</a></span></h2>                
-                <ul odd="1" class="albums albumsMedium clearit">
-    <li class=" first  odd ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/THE+VERY+BEST+OF+LISZT"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/55720071.png" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> THE VERY BEST OF LISZT</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/THE+VERY+BEST+OF+LISZT"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain2" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/3345707/13/album-overview-album-list-dropdown" 
-                    id="buyToggle2" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody2" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 3345707);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 3345707);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3345707/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 3345707);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3345707/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 3345707);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3345707/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 3345707);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain2', 'buyToggle2', 'buyBody2', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li>
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/Eyes+Wide+Shut"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/58659127.png" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> Eyes Wide Shut</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/Eyes+Wide+Shut"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain3" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/1413745/13/album-overview-album-list-dropdown" 
-                    id="buyToggle3" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody3" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 1413745);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 1413745);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413745/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 1413745);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413745/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 1413745);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413745/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 1413745);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain3', 'buyToggle3', 'buyBody3', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li class=" odd ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/Dreams+of+Classics"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/62967187.jpg" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> Dreams of Classics</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/Dreams+of+Classics"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain4" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/1413747/13/album-overview-album-list-dropdown" 
-                    id="buyToggle4" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody4" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 1413747);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 1413747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413747/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 1413747);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/1413747/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 1413747);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/1413747/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 1413747);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain4', 'buyToggle4', 'buyBody4', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li><li class=" last ">
-                    <div class="resContainer">
-            <strong><a href="/music/Franz+Liszt/LISZT+(THE+BEST+OF)"   ><span class="albumCover coverMedium"><img  width="64" src="http://userserve-ak.last.fm/serve/64s/71713992.jpg" class="art"  class="albumCover coverMedium"  /><span class="jewelcase"></span></span> LISZT (THE BEST OF)</a></strong>
-            <br /><a href="/music/Franz+Liszt"    class="artist">Franz Liszt</a>            <a class="playbutton " href="/music/Franz+Liszt/LISZT+(THE+BEST+OF)"><img class="transparent_png play_icon" width="13" height="13" alt="Play" src="http://cdn.last.fm/flatness/preview/play_indicator.png" style="" /></a>            <div class="affiliates"><div id="buyContain5" class="lfmDropDown">
-                    
-                                                            <a 
-                    href="http://www.last.fm/affiliate/byid/8/3347720/13/album-overview-album-list-dropdown" 
-                    id="buyToggle5" 
-                    target="_blank"
-                    class="lfmButton lfmSmallButton lfmSmallBuyMoreButton DropDown"
-                                        data-analytics-action="Buy|Search"
-                        data-analytics-label="DownloadAlbum|7digital"
-                                        rel="nofollow"
-                ><strong>Buy</strong></a>
-                <ul id="buyBody5" class="lfmDropDownBody lfmBuyDropDownBody lfmSmallBuyDropDownBody">
-                                            <li class="buyType"><span>Download Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/13/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|7digital" target="_blank" rel="nofollow">
-                                <span>7digital</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(13, 8, 3347720);</script>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/44/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|Amazon MP3" target="_blank" rel="nofollow">
-                                <span>Amazon MP3</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(44, 8, 3347720);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347720/24/album-overview-album-list-dropdown" data-analytics-action="Buy|Search" data-analytics-label="DownloadAlbum|iTunes" target="_blank" rel="nofollow">
-                                <span>iTunes</span>
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(24, 8, 3347720);</script>
-                                                                                        <li class="buyType"><span>Buy Album</span></li>
-                                                <li><a href="http://www.last.fm/affiliate/byid/8/3347720/1/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|Amazon" rel="nofollow">
-                                Amazon
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(1, 8, 3347720);</script>
-                                                <li class="last"><a href="http://www.last.fm/affiliate/byid/8/3347720/90/album-overview-album-list-dropdown" target="_blank" data-analytics-action="Buy|Search" data-analytics-label="BuyAlbum|eBay" rel="nofollow">
-                                eBay
-                                                                                                    <small>Search</small>
-                                                            </a></li>
-                            <script>LFM.Button.pushAffiliation(90, 8, 3347720);</script>
-                                                            </ul>
-                                <script>
-                new LFM.Display.DropDown('buyContain5', 'buyToggle5', 'buyBody5', {
-                    onShow: function() {
-
-                        try {
-                        LFM.Page.Tracker.eventBuyDropDown('SearchOnly');
-                        } catch (e) {
-                            LFM.log("failed to track drop down event," + e);
-                        }
-                    }
-                });
-</script>
-                    </div></div>
-                    </div>
-        </li>
-</ul>                                                    
-                                        <hr />
-                <h2 id="comments" class="heading"><span class="h2Wrapper"><a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/+shoutbox"   >Shouts</a></span></h2>                <div id="shoutbox">
-                                    <div class="shoutboxInput">
-                        <div class="    messageBox
-    infoMessage 
-    ">
-            <span class="messageWrapper">                <strong>Leave a comment.</strong>
-                <a href="/login/">Log in to Last.fm</a> or <a href="/join/">sign up</a> (it’s&nbsp;free).
-            </span>
-    </div>            </div>                                        <ul id="shoutList" class='shouts'><li style="display:none;"></li></ul>
-                                                    
-            </div>                                    
-        </div><!-- .leftColWrapper -->
-    </div><!-- .leftCol -->
-    
-    <div class="mpuTop rightCol">
-        
-        <div id="LastAd_mpu" class="LastAd ad-mpu inactive">
-    <span> 	
-            <script type="text/javascript">
-    var isInIFrame = (window.location != window.parent.location) ? true : false;
-    var repo = isInIFrame ? this.parent : this;
-    repo.sas_formatid=10706;
-    repo.sas_masterflag=0;
-    repo.SmartAdServer.call(this,repo.sas_pageid,repo.sas_formatid,repo.sas_target);
-</script>
-<noscript>
-    <a href="http://www4.smartadserver.com/call/pubjumpi/30463/211758/10706/S/1339664215/?">
-    <img src="http://www4.smartadserver.com/call/pubi/23751/30463/10706/S/1339664215/?" border="0" alt="" /></a>
-</noscript>        
-    <script>LFM.Adserver.registerAd('mpu');</script>
-	</span>
-</div>        
-                
-                            
-
-
- 
-                        
-        
-                             <h2 class="heading"><span class="h2Wrapper">Recent Activity</span></h2> <ul class="minifeedSmall">
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576135x420845041x9x34914874x4x0x0_d0x9x-1x1308113457x420845041x9x39799318x4x0x0_d0x9x-1x1308105713x420845041x9x39799318x4x0x0_d0x9x-1x1308103922x420845041x9x39799318x4x0x0_d0x9x-1x1308094944x420845041x9x39799318x4x0x0_d0x9x-1x1304805852x420845041x9x39115313x4x0x0_d0x9x-1x1299383504x420845041x9x31613952x4x0x0" class=" clearit loved first odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+8.+Le+mal+du+pays+(Homesickness)" >No. 8. Le mal du pays (Homesickness)</a>. <span class="date" title="16 Apr 2012, 11:35">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576130x420845040x9x34914874x4x0x0_d0x9x-1x1307591883x420845040x9x39799318x4x0x0_d0x9x-1x1304805849x420845040x9x39115313x4x0x0_d0x9x-1x1299383502x420845040x9x31613952x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Eclogue+(Eclogue)" >No. 7. Eclogue (Eclogue)</a>. <span class="date" title="16 Apr 2012, 11:35">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576115x420845039x9x34914874x4x0x0_d0x9x-1x1322727972x420845039x9x45891793x4x0x0_d0x9x-1x1304196063x420845039x9x39041219x4x0x0_d0x9x-1x1299383501x420845039x9x31613952x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/imtryingtosleep" title="">imtryingtosleep</a>, <a href="/user/incalculacable" title="47, Male">incalculacable</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+6.+Vallee+d'Obermann+(Valley+of+Obermann)" >No. 6. Vallee d'Obermann (Valley of Obermann)</a>. <span class="date" title="16 Apr 2012, 11:35">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576105x420845038x9x34914874x4x0x0_d0x9x-1x1307394455x420845038x9x39799318x4x0x0_d0x9x-1x1304805847x420845038x9x39115313x4x0x0_d0x9x-1x1299383499x420845038x9x31613952x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Orage+(Storm)" >No. 5. Orage (Storm)</a>. <span class="date" title="16 Apr 2012, 11:35">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576098x420845033x9x34914874x4x0x0_d0x9x-1x1309562568x420845033x9x40446835x4x0x0_d0x9x-1x1307249442x420845033x9x39799318x4x0x0_d0x9x-1x1306193857x420845033x9x39115313x4x0x0_d0x9x-1x1304805846x420845033x9x39115313x4x0x0_d0x9x-1x1299383495x420845033x9x31613952x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thatjulymorning" title="89">thatjulymorning</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a> and 2 other people loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+3.+Pastorale+(Pastoral)" >No. 3. Pastorale (Pastoral)</a>. <span class="date" title="16 Apr 2012, 11:34">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576093x420845030x9x34914874x4x0x0_d0x9x-1x1307591881x420845030x9x39799318x4x0x0_d0x9x-1x1304805844x420845030x9x39115313x4x0x0_d0x9x-1x1299383493x420845030x9x31613952x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+2.+Au+lac+de+Wallenstadt+(At+the+Lake+of++Wallenstadt)" >No. 2. Au lac de Wallenstadt (At the Lake of Wallenstadt)</a>. <span class="date" title="16 Apr 2012, 11:34">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576087x420845029x9x34914874x4x0x0_d0x9x-1x1308105711x420845029x9x39799318x4x0x0_d0x9x-1x1308103918x420845029x9x39799318x4x0x0_d0x9x-1x1308094940x420845029x9x39799318x4x0x0_d0x9x-1x1308078027x420845029x9x39799318x4x0x0_d0x9x-1x1304805841x420845029x9x39115313x4x0x0_d0x9x-1x1299383492x420845029x9x31613952x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/thishotjuneday" title="88, Female, United Kingdom">thishotjuneday</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and 1 other person loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+1.+La+chapelle+de+Guillaume+Tell+(The+Chapel+of+William+Tell)" >No. 1. La chapelle de Guillaume Tell (The Chapel of William Tell)</a>. <span class="date" title="16 Apr 2012, 11:34">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334576022x457090547x9x34914874x4x0x0" class=" clearit loved even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+7.+Sursum+corda+(Lift+up+Your+Hearts)" >No. 7. Sursum corda (Lift up Your Hearts)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="16 Apr 2012, 11:33">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334575997x420901787x9x34914874x4x0x0_d0x9x-1x1304805875x420901787x9x39115313x4x0x0_d0x9x-1x1299383628x420901787x9x31613952x4x0x0" class=" clearit loved odd ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a>, <a href="/user/mayappearcloser" title="">mayappearcloser</a> and <a href="/user/emptyblueserene" title="33, Female, United States">emptyblueserene</a> loved <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+5.+Sunt+lacrymae+rerum+(en+mode+hongrois)+(There+are+Tears+for+Things+(In+The+Hungarian+Mode))" >No. 5. Sunt lacrymae rerum (en mode hongrois) (There are Tears for Things (In The…</a>. <span class="date" title="16 Apr 2012, 11:33">April 2012</span>
- </li>
- 
- 
- 
- 
-
- <li id="dd0x9x-1x1334575989x420901786x9x34914874x4x0x0" class=" clearit loved last even ">
- <img class="icon act_loved_icon" width="20" height="20" src="http://cdn.last.fm/flatness/clear.gif" style="" />
- 
- 
- <a href="/user/ncbrs" title="">ncbrs</a> added <a href="/music/Franz+Liszt">Franz Liszt</a> – <a href="/music/Franz+Liszt/Liszt:+Ann%C3%A9es+de+P%C3%A8lerinage/No.+4.+Les+jeux+d'eau+a+la+Villa+d'Este+(The+Fountains+of+the+Villa+d'Este)" >No. 4. Les jeux d'eau a la Villa d'Este (The Fountains of the Villa d'Este)</a> to their <a href="/user/ncbrs/library/loved" title="">Loved Tracks</a>. <span class="date" title="16 Apr 2012, 11:33">April 2012</span>
- </li>
- </ul> 
-                        
-                                <div id="LastAd_lowermpu" class="LastAd ad-lowermpu inactive">
-    <span> 	
-                    
-    <script>LFM.Adserver.registerAd('lowermpu');</script>
-	</span>
-</div>    </div><!-- .rightCol -->
-    <div id="LastAd_lowerleaderboard" class="LastAd ad-lowerleaderboard inactive">
-    <span> 	
-                    
-    <script>LFM.Adserver.registerAd('lowerleaderboard');</script>
-	</span>
-</div>    
-    </div><!-- #content -->
-
-
-<div id="LastFooter" role="banner">      
-    <div id="footer_ads" class="clearit">
-        <div class="footer_ad_wrapper">
-
-            <div id="LastAd_Footer1" class="LastAd">
-    <a target="_blank" href="http://www.last.fm/community" data-analytics-action="FooterAd" data-analytics-label="AdSlot1_http://www.last.fm/community">        <img src="http://cdn.last.fm/footerads/xx_1_1296580787.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer2" class="LastAd">
-    <a target="_blank" href="http://build.last.fm/" data-analytics-action="FooterAd" data-analytics-label="AdSlot2_http://build.last.fm/">        <img src="http://cdn.last.fm/footerads/xx_2_1299157809.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer3" class="LastAd">
-    <a target="_blank" href="http://www.last.fm/group/Does+It+Scrobble" data-analytics-action="FooterAd" data-analytics-label="AdSlot3_http://www.last.fm/group/Does+It+Scrobble">        <img src="http://cdn.last.fm/footerads/xx_3_1296580681.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            <div id="LastAd_Footer4" class="LastAd last">
-    <a target="_blank" href="http://playground.last.fm/home" data-analytics-action="FooterAd" data-analytics-label="AdSlot4_http://playground.last.fm/home">        <img src="http://cdn.last.fm/footerads/xx_4_1301333110.gif" title="Advertise on Last.fm" width="192" height="64" />
-    </a></div>            
-        </div><!-- .footer_ad_wrapper -->
-    </div><!-- #footer_ads --> 
-        
-        <ul id="footerStuff" class="clearit">
-        <li></li>
-
-        <li><p id="uploadYourMusic">
-            <strong>Do you make music? Upload it!</strong><br /><a href="/uploadmusic?accountType=artist">Artists</a> or <a href="/uploadmusic?accountType=label">Labels</a>
-        </p></li>
-    </ul><!-- #footerStuff -->
-    
-    <div id="footer_content">
-        <ul id="footerLinks" class="clearit">
-            <li class="first">
-                <dl>
-                    <dt>Learn About Us</dt>
-                    <dd><a href="/about/contact">Contact</a></dd>
-                    <dd><a href="/about">About Us</a></dd>
-                    <dd><a href="/about/team">Team</a></dd>
-                    <dd><a href="/about/jobs">Jobs</a></dd>
-                    <dd><a href="/resources">Media Kit</a></dd>
-                    <dd><a href="/advertise">Advertise</a></dd>
-                    <dd><a href="/legal">Legal</a></dd>
-                </dl>
-            </li>
-            <li>
-                <dl>
-                    <dt>Get Help</dt>
-                    <dd><a href="/help/faq">FAQ</a></dd>
-                    <dd><a href="/forum/21713">Website Support</a></dd>
-                    <dd><a href="/forum/34905">Scrobbler Support</a></dd>
-                    <dd><a href="/group/Last.fm+for+iPhone+and+iPod+Touch/forum/103852">iPhone Support</a></dd>
-                    <dd><a href="http://www.last.fm/group/Last.fm+on+Xbox+LIVE/forum/137848">Xbox LIVE Support</a></dd>
-                    <dd><a href="http://status.last.fm/">System Status</a></dd>
-                </dl>
-            </li>
-        
-            <li>
-                <dl>
-                    <dt>Join In</dt>
-                    <dd><a href="/join">Sign up</a></dd>                                        <dd><a href="/community/users">Find People</a></dd>
-                    <dd><a href="/community/groups">Find Groups</a></dd>
-                    <dd><a href="/forum">Forums</a></dd>
-                    <dd><a href="/help/guidelines">Community Guidelines</a></dd>
-                    <dd><a href="/about/moderators">Moderators</a></dd>
-                </dl>
-            </li>
-            <li class="last">
-                <dl>
-                    <dt>Do More</dt>
-                    <dd><a href="/download">Download Last.fm Scrobbler</a></dd>
-                    <dd><a href="/download#content_ipod">Download iPod Scrobbler</a></dd>
-                    <dd><a href="/hardware/apple">iPhone App</a></dd>
-                    <dd><a href="http://build.last.fm">More Apps</a></dd>
-                    <dd><a href="/music/+free-music-downloads">Free Music Downloads</a></dd>
-                    <dd><a href="/hardware">Hardware</a></dd>
-                    <dd><a href="/tools/charts">Chart Images</a></dd>
-                    <dd><a href="/subscribe">Subscribe</a></dd>
-                    <dd><a href="/api">API</a></dd>
-                </dl>
-            </li>
-        </ul><!-- #footerLinks -->
-        
-        <div id="justCantGetEnough" class="clearit">
-            <blockquote>“Your Last.fm, Right Away.”</blockquote>
-            <p>
-                <strong>More Last.fm Sites:</strong>
-                <a href="http://blog.last.fm/">Blog</a>
-                | <a href="http://musicmanager.last.fm">Music Manager</a>
-                | <a href="http://build.last.fm">Build</a>
-                | <a href="http://playground.last.fm">Playground (Subscriber VIP zone)</a>
-                                    | <a href="http://www.last.fm/bestof/2011">Best of 2011</a>
-                            </p>
-        </div>
-        
-        <div id="legalities">
-            <div id="cbsi_f">
-<form>
-<script>document.write("<div><label class=\"rb_visit_txt\" for=\"cbsi_footer_menu\">Visit other Sites</label><select name=\"cbsi_footer_menu\" id=\"cbsi_footer_menu\" class=\"rb_visit_sel\"><option value=\"\">Select Site</option><option value=\"http://www.bnet.com\">BNET</option><option value=\"http://www.cbscares.com\">CBS Cares</option><option value=\"http://www.cbsfilms.com\">CBS Films</option><option value=\"http://www.cbsradio.com/streaming/index.html\">CBS Radio</option><option value=\"http://www.cbs.com\">CBS.com</option><option value=\"http://www.cbsinteractive.com\">CBSInteractive</option><option value=\"http://www.cbsnews.com\">CBSNews.com</option><option value=\"http://www.cbssports.com\">CBSSports.com</option><option value=\"http://www.chow.com\">CHOW</option><option value=\"http://www.cnet.com\">CNET</option><option value=\"http://collegenetwork.cbssports.com\">College Network</option><option value=\"http://findarticles.com\">Find Articles</option><option value=\"http://www.gamespot.com\">GameSpot</option><option value=\"http://www.help.com\">Help.com</option><option value=\"http://www.last.fm\">Last.fm</option><option value=\"http://www.maxpreps.com\">MaxPreps</option><option value=\"http://www.metacritic.com\">Metacritic.com</option><option value=\"http://moneywatch.bnet.com\">Moneywatch</option><option value=\"http://www.mysimon.com\">mySimon</option><option value=\"http://www.radio.com\">Radio.com</option><option value=\"http://www.search.com\">Search.com</option><option value=\"http://www.shopper.com\">Shopper.com</option><option value=\"http://www.sho.com\">Showtime</option><option value=\"http://www.smartplanet.com\">SmartPlanet</option><option value=\"http://www.techrepublic.com\">TechRepublic</option><option value=\"http://www.theinsider.com\">The Insider</option><option value=\"http://www.tv.com\">TV.com</option><option value=\"http://www.urbanbaby.com\">UrbanBaby.com</option><option value=\"http://www.zdnet.com\">ZDNet</option></select><input type=\"button\" class=\"rb_visit_go\" value=\"Go\" onClick=\"window.location=document.getElementById('cbsi_footer_menu').options[document.getElementById('cbsi_footer_menu').selectedIndex].value;\" /></div>");</script>
-</form>
-  <noscript>
-	<a href="http://www.bnet.com">BNET</a>  | <a href="http://www.cbscares.com">CBS Cares</a>  | <a href="http://www.cbsfilms.com">CBS Films</a>  | <a href="http://www.cbsradio.com/streaming/index.html">CBS Radio</a>  | <a href="http://www.cbs.com">CBS.com</a>  | <a href="http://www.cbsinteractive.com">CBSInteractive</a>  | <a href="http://www.cbsnews.com">CBSNews.com</a>  | <a href="http://www.cbssports.com">CBSSports.com</a>  | <a href="http://www.chow.com">CHOW</a>  | <a href="http://www.cnet.com">CNET</a>  | <a href="http://collegenetwork.cbssports.com">College Network</a>  | <a href="http://findarticles.com">Find Articles</a>  | <a href="http://www.gamespot.com">GameSpot</a>  | <a href="http://www.help.com">Help.com</a>  | <a href="http://www.last.fm">Last.fm</a>  | <a href="http://www.maxpreps.com">MaxPreps</a>  | <a href="http://www.metacritic.com">Metacritic.com</a>  | <a href="http://moneywatch.bnet.com">Moneywatch</a>  | <a href="http://www.mysimon.com">mySimon</a>  | <a href="http://www.radio.com">Radio.com</a>  | <a href="http://www.search.com">Search.com</a>  | <a href="http://www.shopper.com">Shopper.com</a>  | <a href="http://www.sho.com">Showtime</a>  | <a href="http://www.smartplanet.com">SmartPlanet</a>  | <a href="http://www.techrepublic.com">TechRepublic</a>  | <a href="http://www.theinsider.com">The Insider</a>  | <a href="http://www.tv.com">TV.com</a>  | <a href="http://www.urbanbaby.com">UrbanBaby.com</a>  | <a href="http://www.zdnet.com">ZDNet</a> 
-  </noscript>
-</div>        <p id="copy">
-            &copy; 2012 Last.fm Ltd. All rights reserved. | 
-            <a href="/legal/terms" target="_blank">Terms of Use</a> 
-            and <a href="/legal/privacy" target="_blank">Privacy Policy</a> | <span class="date">Updated Mar 22, 2012</span><br />
-        
-                Some user-contributed text on this page is available under the <a href="http://creativecommons.org/licenses/by-sa/3.0/legalcode">Creative Commons Attribution/Share-Alike License</a>.<br />
-        Text may also be available under the <a href="/help/gfdl">GNU Free Documentation License</a>.
-        </p>
-</div><!-- #legalities -->
-
-    </div>
-</div><!-- #LastFooter -->
-
-<div id="multiButtonMenu" style="display: none;">
-    <div>
-        <ul class="lfmDropDownBody">
-            <li class="mAddToLibrary"><a href="#">Add to my Library</a></li>
-            <li class="mAddToFriends"><a href="#">Add to Friends</a></li>
-            
-            <!-- <li class="save"><a href="#">Bookmark</a></li> -->
-            <li class="mSend"><a href="#">Share</a></li>
-            
-            <li class="mLove"><a href="#">Love this track</a></li>
-            <li class="mUnlove"><a href="#">Unlove track</a></li>
-            <li class="mBan"><a href="#">Ban track from radio</a></li>
-            <li class="mUnban"><a href="#">Unban track from radio</a></li>
-
-                                    
-            <li class="mAddTags"><a href="#">Add tags</a></li>
-            <li class="mAddToPlaylist"><a href="#">Add to playlist</a></li>
-            
-            <li class="mRemoveFromLibrary"><a href="#">Remove from your Library</a></li>
-            
-            <li class="mBuy"><a href="#">Buy Track</a></li>
-                        <li class="mMessage"><a href="#">Send a message</a></li>
-                        <li class="mEditDetails"><a href="#">Edit Details</a></li>
-            <li class="mMessageAll"><a href="#">Message All Users</a></li>
-            <li class="mEditPermissions"><a href="#">Edit Permissions</a></li>
-            <li class="mAbdicate"><a href="#">Abdicate</a></li>
-            <li class="mLeave"><a href="#">Leave Group</a></li>
-            
-            <li class="mLoading"><a href="#">&nbsp;</a></li>
-        </ul>
-    </div>
-</div>
-
-
-<script type="text/javascript" src="//dw.com.com/js/dw.js"></script>
-<script type="text/javascript">
-  DW.pageParams = {
-    siteid: '190',
-    ptid: '6693'
-  };
-  DW.tagNielsen = false;
-  DW.clear();
-</script>
-<noscript>
-    <img src="//dw.com.com/clear/c.gif?ts=1339664216&amp;sid=190;" />
-</noscript>
-
-
-
-
-
-<div id="siteSearchAutocomplete" class="autocomplete" style="display: none;"></div>
-
-<script>
-// Search autocomplete
-new LFM.Ajax.SideGroupedMulticompleter('siteSearchBox', 'siteSearchAutocomplete', '/search/autocomplete', {
-    frequency: 0.2,
-    indicator: 'siteSearchProgress',
-    enabled: true
-});
-LFM.Button.MultiButton.setup();
-LFM.Display.setMinHeight();
-</script>
-
-<div id="fb-root"></div>
-
-
-        </div>
-    </div>
-    
-    <!--BEGIN APEX-->
-    <script type="text/javascript" src="http://i.i.com.com/cnwk.1d/Aud/javascript/last/apex.js"></script>
-    <script type="text/javascript">
-        var cbsiApexGlobal = {
-                    'SITE' : '190',
-                    'PTYPE' : '2000'
-                  };
-
-        cbsiRunApexTargets(cbsiApexGlobal, 1000);
-    </script>     
-    <!--END APEX-->    
-    
-
-        
-    <script>
-    
-    // enable XHR wrapper
-    window.ClickTaleSettings = { XHRWrapper: { Enable: true} };
-
-    document.write(unescape("%3Cscript%20src='" +
-(document.location.protocol == 'https:' ?
-  'https://clicktalecdn.sslcs.cdngc.net/' :
-  'http://cdn.clicktale.net/') +
-"www09/ptc/220b3951-66a2-4b8e-ac35-fa58bfb30846.js'%3E%3C/script%3E"));
-
-    </script>
-    
-
-    
-
-    </body>
-</html>
\ No newline at end of file
diff --git a/tests/library/Class/WebService/LastfmTest.php b/tests/library/Class/WebService/LastfmTest.php
index a66a7fb170fe4f351eb34cf3df6a2dbb15ce0668..32c6f89d6d96d4ffe1f3103fc89e6b7a2e759942 100644
--- a/tests/library/Class/WebService/LastfmTest.php
+++ b/tests/library/Class/WebService/LastfmTest.php
@@ -47,202 +47,121 @@ abstract class LastfmParserTestCase extends PHPUnit_Framework_TestCase {
 
 
 
-class LastfmFixParserErrorTest extends LastfmParserTestCase {
+class LastfmGetDiscographieBashungTestTest extends LastfmParserTestCase {
+  protected $_albums;
+
   public function setUp() {
     parent::setUp();
 
     $this->_http_client
       ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=album.search&album=ANNEES+PELERINAGE')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/as_wrong_franz_liszt_pelerinage.xml'))
+      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=artist.search&artist=ALAIN+BASHUNG')
+      ->answers(file_get_contents(ROOT_PATH . 'tests/fixtures/lastfm_bashung_albums.xml'))
 
       ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Franz+Liszt/Liszt+:+Les+Annees+De+Pelerinage+-+Ciccolini')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_wrong_franz_liszt_pelerinage.html'))
+      ->with('http://www.last.fm/music/Alain+Bashung/+albums')
+      ->answers(file_get_contents(ROOT_PATH . 'tests/fixtures/lastfm_bashung_albums.html'))
 
       ->beStrict();
 
-    $this->_album = $this->_last_fm->getMorceaux('Les années de pélerinage', 'Franz Liszt');
+    $this->_albums = $this->_last_fm->getDiscographie('Alain Bashung');
   }
 
 
-
   /** @test */
-  public function firstMorceauShouldHaveTitleLaChapelleDeGuillaumeTell() {
-    $this->assertEquals('No. 1. La chapelle de Guillaume Tell (The Chapel of William Tell)',
-                        $this->_album['morceaux'][1][1]['titre']);
+  public function firstAlbumShouldBeBleuPetrole() {
+    $this->assertEquals('Bleu Pétrole',
+                        $this->_albums[0]['titre']);
   }
 
 
   /** @test */
-  public function lastMorceauShouldHaveTitleSursumCorda() {
-    $this->assertEquals('No. 7. Sursum corda (Lift up Your Hearts)',
-                        $this->_album['morceaux'][1][26]['titre']);
+  public function firstAlbumVignetteShouldBe59a6df63634f43db9930fc947ed5ae04DotJpg() {
+    $this->assertEquals('http://img2-ak.lst.fm/i/u/300x300/59a6df63634f43db9930fc947ed5ae04.jpg',
+                        $this->_albums[0]['vignette']);
   }
 
-}
 
+  /** @test */
+  public function numberOfAlbumsShouldBeFifteen() {
+    $this->assertCount(15, $this->_albums);
+  }
+}
 
 
 
-class LastfmParserTest extends LastfmParserTestCase {
+class LastFmGetMorceauxUnpluggedClaptonIntegrationTest extends ModelTestCase {
   public function setUp() {
     parent::setUp();
-
-    $this->_http_client
-      ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=album.search&album=ANNEES+PELERINAGE')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/as_right_franz_liszt_pelerinage.xml'))
-
-      ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Franz+Liszt/Liszt:+Annees+De+Pelerinage,+Vol.++2')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_right_franz_liszt_pelerinage.html'))
-
-      ->beStrict();
-
-    $this->_album = $this->_last_fm->getMorceaux('Les années de pélerinage', 'Franz Liszt');
+    $lastfm = new Class_WebService_Lastfm();
+    $album = $lastfm->getMorceaux('Unplugged', 'Eric Clapton');
+    $this->_tracks = $album['morceaux'][1];
   }
 
 
   /** @test */
-  public function fourthMorceauShouldHaveTitleSonnet47() {
-    $this->assertEquals('No. 4. Sonetto 47 del Petrarca (Sonnet 47 of Petrarch)',
-                        $this->_album['morceaux'][1][4]['titre']);
+  public function firstTrackShouldBeSigne() {
+    $this->assertEquals('Signe',
+                        $this->_tracks[1]['titre']);
   }
 
 
   /** @test */
-  public function lastMorceauShouldHaveTitleTarantella() {
-    $this->assertEquals('III. Tarantella',
-                        $this->_album['morceaux'][1][10]['titre']);
+  public function twelthTrackShouldBeMaltedMilk() {
+    $this->assertEquals('Malted Milk',
+                        $this->_tracks[12]['titre']);
   }
-
 }
 
 
-class LastfmGetAblbumGainsbourgRevisitedTest extends LastfmParserTestCase {
-  public function setUp() {
-    parent::setUp();
-
-    $this->_http_client
-      ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=album.search&album=MONSIEUR+GAINSBOURG+REVISITED')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_album_monsieur_gainsbourg_revisited.xml'))
 
-      ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Various+Artists/Monsieur+Gainsbourg+Revisited')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_album_monsieur_gainsbourg_revisited.html'))
 
-      ->beStrict();
-
-    $this->_album = $this->_last_fm->getMorceaux('Monsieur Gainsbourg revisited', 'Serge Gainsbourg');
-  }
-
-
-  /** @test */
-  public function ThirteenthTrackShouldHaveTitleTheBalladOfBonnieAndClyde() {
-    $this->assertEquals('The Ballad Of Bonnie And Clyde',
-                        $this->_album['morceaux'][1][13]['titre']);
-  }
-
-}
-
-class LastfmGetPhotosRageAgainstTheMachineTest extends LastfmParserTestCase {
+class LastfmGetPhotosRageAgainstTheMachineTest extends ModelTestCase {
   public function setUp() {
     parent::setUp();
-
-    $this->_http_client
-      ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=artist.search&artist=RAGE+AGAINST+THE+MACHINE')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_artist_rage_machine.xml'))
-
-      ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Rage+Against+the+Machine/+images')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_artist_rage_machine.html'))
-
-      ->beStrict();
-
-    $this->_photo = $this->_last_fm->getPhotos('rage against the machine');
+    $lastfm = new Class_WebService_Lastfm();
+    $this->_photos = $lastfm->getPhotos('Rage Against The Machine');
   }
 
 
   /** @test */
-  public function firstPhotoShouldBe380903dotjpg() {
-    $this->assertEquals('http://userserve-ak.last.fm/serve/126s/380903.jpg',
-                        $this->_photo[0]);
+  public function numberOfPhotosShouldBeGreaterThanTen() {
+    $this->assertTrue(count($this->_photos) > 10);
   }
-}
-
 
 
-
-class LastfmGetPhotosChristopheTest extends LastfmParserTestCase {
-  public function setUp() {
-    parent::setUp();
-
-    $this->_http_client
-      ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=artist.search&artist=CHRISTOPHE')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_artist_christophe.xml'))
-
-      ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Christophe/+images')
-      ->answers(file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/lastfm_artist_christophe.html'))
-
-      ->beStrict();
-
-    $this->_photo = $this->_last_fm->getPhotos('christophe');
+  /** @test */
+  public function firstPhotoShouldBeValidUrl() {
+    $validator = new ZendAfi_Validate_Url();
+    $this->assertTrue($validator->isValid($this->_photos[0]['thumb']));
   }
 
 
   /** @test */
-  public function firstPhotoShouldBe44611277dotjpg() {
-    $this->assertEquals('http://userserve-ak.last.fm/serve/126s/44611277.jpg',
-                        $this->_photo[0]);
+  public function fullPhotoShouldBeInFolder770x0() {
+    $this->assertContains('/i/u/770x0/', $this->_photos[0]['full']);
   }
 }
 
 
 
 
-class LastfmGetDiscographieBashungTestTest extends LastfmParserTestCase {
-  protected $_albums;
 
+class LastfmGetMorceauxNoTracksIntegrationTest extends ModelTestCase {
   public function setUp() {
     parent::setUp();
-
-    $this->_http_client
-      ->whenCalled('open_url')
-      ->with('http://ws.audioscrobbler.com/2.0/?api_key=76d470da0d3d5cb08a7025aae2c8686a&method=artist.search&artist=ALAIN+BASHUNG')
-      ->answers(file_get_contents(ROOT_PATH . 'tests/fixtures/lastfm_bashung_albums.xml'))
-
-      ->whenCalled('open_url')
-      ->with('http://www.last.fm/music/Alain+Bashung/+albums')
-      ->answers(file_get_contents(ROOT_PATH . 'tests/fixtures/lastfm_bashung_albums.html'))
-
-      ->beStrict();
-
-    $this->_albums = $this->_last_fm->getDiscographie('Alain Bashung');
+    $this->_last_fm = new Class_WebService_Lastfm();
+    $this->_album = $this->_last_fm->getMorceaux('Les années de pélerinage', 'Franz Liszt');
   }
 
 
   /** @test */
-  public function firstAlbumShouldBeBleuPetrole() {
-    $this->assertEquals('Bleu Pétrole',
-                        $this->_albums[0]['titre']);
+  public function nbResultsShouldBeZero() {
+    $this->assertEquals(0, $this->_album['nb_resultats']);
   }
 
+}
 
-  /** @test */
-  public function firstAlbumVignetteShouldBe59a6df63634f43db9930fc947ed5ae04DotJpg() {
-    $this->assertEquals('http://img2-ak.lst.fm/i/u/300x300/59a6df63634f43db9930fc947ed5ae04.jpg',
-                        $this->_albums[0]['vignette']);
-  }
 
 
-  /** @test */
-  public function numberOfAlbumsShouldBeFifteen() {
-    $this->assertCount(15, $this->_albums);
-  }
-}
 ?>