$(function()
{
	// Effet d'opacité au passage de la souris
	$('.opacity')
		.bind('mouseover', function() { $(this).stop().animate( {opacity:  0.6} ); })
		.bind('mouseout',  function() { $(this).stop().animate( {opacity:  1} ); })
		.css('opacity',1);


	// player
	$("#listen a").click(function(evt)
	{
		evt.preventDefault();
		window.open( $(this).attr('href'), 'player', 'status=0,toolbar=0,location=0,menubar=0,resizable=1,height=240,width=240');
	});


	$( "#menu-" + $("#header .menu").attr('data-active') ).addClass('active');
});

