$(function() { // executed when $(document).ready()
  $("#jquery_jplayer").jPlayer( {
	
	 cssSelectorAncestor: '.jp-interface',
	  	  
	  cssSelector: {
  videoPlay: '.jp-video-play',
  play: '.jp-play',
  pause: '.jp-pause',
  stop: '.jp-stop',
  seekBar: '.jp-load-bar',
  playBar: '.jp-play-bar',
  mute: '.jp-volume-min',
  unmute: '.jp-volume-max',
  volumeBar: '.jp-volume-bar',
  volumeBarValue: '.jp-volume-bar-value',
  currentTime: '.jp-play-time',
  duration: '.jp-total-time'
 }, 	  
	  	  
    ready: function () {
		
      $(this).jPlayer("setMedia", {
        oga: "/music/song1.ogg" // Defines the m4v url
      }); // Attempts to Auto-Play the media
    },
    solution: 'html, flash',
    supplied: "oga",
    swfPath: "/wp-content/themes/974attitudev3/lib/lib"
  });
});

