$(function(){
	// Add extended Google Analytics tracking.
	$.jGoogleAnalytics('UA-16919504-1', {anchorClick: true});

	$('#search-terms').focus(function(){
		if($(this).val() == 'Enter Keywords') $(this).val('');
	}).blur(function(){
		if($(this).val() == '') $(this).val('Enter Keywords');
	});
	
	$('a[href$=".mp3"]').each(function(n){
		var node = $(this),
			src = node.attr('href'),
			title = node.text(),
			id = 'player' + n,
			tgt = $('<div id="' + id + '"></div>');
		
		node.data('player', id).before(tgt);
		
		PKL_AddPlayer({
			id: id,
			title: title,
			media: src,
			target: id
		});
	}).live('click', function(){
		var pID = $(this).data('player');
		PKL_GetInfo(pID).playing ? PKL_Pause(pID) : PKL_Play(pID);		
		return false;
	});
});

