$(document).ready(function(){

	$('.disco .bg').css({opacity: '0.5'});

	$('.disco .play')
		.each(function(){
			$(this)
				.children('p').addClass('playOut')
				.hover(function(t){
					$(this).addClass('playOver');
						},function(t){
					$(this).removeClass('playOver');
				})
				.click(function(t){
					if($(this).parent('li').attr('target'))
					{
						window.open($(this).parent("li").attr("target"));
					}
					else
					{
						if($(this).parent("li").attr('album'))
						{
							popUp('player.php?album='+$(this).parent("li").attr('album'), 'windowName', MP3PLAYER_HEIGHT, MP3PLAYER_WIDTH);	
						}
					}
				})
				;
		});
		
});