				
			


$(document).ready(function() {
$('.toggle').before('<a href="#" class="toggleLink">Afficher</a>');
//  texte pour show/hide lien
var showText="Afficher";
var hideText="Cacher";
//  pour des images   
//var showText="<img src='/style/img/affiche.gif'/>";
// var hideText="<img src='/style/img/cache.gif'/>";
$('.toggle').hide();
$('a.toggleLink').click(function() {
if ($('a.toggleLink').html()==showText) {
$(this).html()==hideText ? $(this).html(showText):$(this).html(hideText);
}
$(this).next('.toggle').toggle('slow');
return false;
				});
});

