/*
 * Petit hack pour ouvrir les commentaires en popup;
 */
$(document).ready(function(){
	$('.comment').each(function(){
		$(this).attr('href', $(this).attr('href')+'?KeepThis=true&TB_iframe=true&height=450&width=450');
		$(this).removeAttr('onclick');
	});
	$('#popup a').each(function(){
		$(this).click(function(){
            self.parent.window.location.replace( $(this).attr('href'));
		});
	});
	$('#li--6').attr('style', 'display: none');
	$('#li--6items').attr('style', 'display: none');
});