$(document).ready(function(){
						   
	
	$('head').append('<link rel="stylesheet" type="text/css" href="./lib/jquery/jPlayer.0.2.5/jplayer.css" media="screen, print" title="default" />');					   
	$('.top #col-c').append('<p id="jpId"></p>');
	$('.top #col-c').append('<p id="switch"><img id="play" src="./img/common_soundon.gif" alt="サウンド オン" /><img id="pause" src="./img/common_soundoff.gif" alt="サウンド オフ" /></p>');
	
	
	$('.top #jpId').jPlayer({
		ready: function () {
			
			$(this).setFile('./mp3/index.mp3').play();
		  
			$('.top #jpId').onSoundComplete(function(){$(this).play()});

	},
	
	swfPath: './lib/jquery/jPlayer.0.2.5/'
	
	})
	
	.jPlayerId('pause', 'pause')
	.jPlayerId('play', 'play')
	
	
});


