$(document).ready(function(){

	// Local copy of jQuery selectors, for performance.
	$("#jquery_jplayer").jPlayer({
		ready: function () {
			this.element.jPlayer("setFile", "http://junttu.com/mp3/Junttu-Aallot.mp3");
		},
		volume: 100,
		oggSupport: false,
		swfPath: "/js/"
	})
	.jPlayer("cssId", "play", "play")
	.jPlayer("cssId", "pause", "pause")

});
$(function(){
	document.getElementById('controls').style.display = 'block';
});

