$(document).ready(function() {

	$('#generique .nom').find("a").hide();
	$('#playlist a').find("span").hide();
	$('#playlist a').find("i").hide();
	$('#playlist a').find("b").hide();

	$('#generique .nom').hover(
	function () {
		$(this).find("a").show();
		$(this).find("a").css({'height':'14px'});
	},
	function () {
		$(this).find("a").hide();
	});
	
	$('#playlist a').not('.select').hover(
	function () {
		$(this).find("span").show();
		$(this).find("i").show();
		$(this).find("b").show();
	},
	function () {
		$(this).find("span").hide();
		$(this).find("i").hide();
		$(this).find("b").hide();
	});
	
	$('.popup').click(function(){
		window.open ($(this).attr('href'), 'Partager - C-Reas', 'height=400, width=550, toolbar=no, menubar=no, directories=no'); return false
	});

});