/* Remplacement automatique des liens Worldcat et OL par des icônes */
$(document).ready(function()
{
	$("#corps_biblio p").children("a[href*='openlibrary']").each(function(){
		$(this).replaceWith("<a href='"+$(this).attr("href")+"' title='Notice Open Library' onclick='window.open(this.href); return false;'><img src='images/bg/icon-ol.gif' alt='Open Library' /></a>");
	});
	
	$("#corps_biblio p").children("a[href*='worldcat']").each(function(){
		$(this).replaceWith("<a href='"+$(this).attr("href")+"' title='Notice Worldcat' onclick='window.open(this.href); return false;'><img src='images/bg/icon-worldcat.png' alt='Worldcat' /></a>");
	});
});

