	$(document).ready(function() {
		$('div.link').hover(function() {
			$(this).css({'text-indent':0,'background-position':'100px 100px'});
		});
		
		$('div.link').click(function() {
			location.href = $(this).children('a').attr('href');
		});
		$('div.link').hover(
			function() {
				$(this).css({'text-indent':0,'background-position':'300px 300px'});
			},
			function() {
				$(this).css({'text-indent':'-9000px','background-position':'0px 0px'});
			});
			
			
			$('.audioplayer').each(function() {
//				$(this).after('<div class="true_audio_player">'+$(this).attr('href')+'</div>');	
				audio_file_path = $(this).attr('href');
				$(this).parent().flash(
					{ 
						src: 'audio/player_mp3_mini.swf',
						width: 160,
						height: 20,
						bgcolor: '#000000',
						flashvars: {mp3: audio_file_path }
					},
					{ version: 8 }
				)
			})	
	});
