var playerElem = null;


function initPlayer(){
   $("#jquery_jplayer_1").jPlayer({
		swfPath: "http://www.argon-verlag.de/wp-content/themes/argon/javascript/jplayer/Jplayer.swf",
		supplied: "mp3"
  });
}

function setJPlayerMedia( file ){                    
        $('#jquery_jplayer_1').jPlayer('setMedia', {
                    mp3 : file
        }).jPlayer('play');
        
}
function playPlayer(){
	$('#jquery_jplayer_1').jPlayer("play");   
}
$(document).ready(function() {		
                 window.setTimeout( initMe , 1000);
});
function initMe(){
        initPlayer();      
        $('.player .play').click(
                function(){					
                   file =  $(this).parent().parent().find('.downl').attr('href');
                   setJPlayerMedia( file );
                }
        );
        $('.player .stop').click(
                function(){
                        $('#jquery_jplayer_1').jPlayer("stop");
                        $('.player .play').attr("src","/img/rez_play.jpg");
                }
        );
        $('.player .downl').click(
                function(){
                        window.location.href = $(this).attr('href');
                }
        );

}


