var num=1;

function controls(action){
	//var action=(action=='Next')?'next':$(this).attr('id');
switch($(this).attr('id')){
	case 'prev': num=(num==1)?1:num-1; break;
	case 'next': ++num; break;
	case 'pause': num=(num==0)?1:num; break;
	//default: if(action=='Next')$('#sound')[0].playSound('');return false; break;
}
	try{		$('#sound')[0].playSound('http://phillyhomegrown.net/includes/randomaudio.php?num='+num);	}catch(err){		$('#sound embed')[0].playSound('http://phillyhomegrown.net/includes/randomaudio.php?num='+num);	}
	
}

$(document).ready(function(){
	$('#controls a').bind('click',controls);		$('#nav a').hover(		function(){			$(this).prev().fadeIn();		},		function(){			$(this).prev().hide();		}	);
});
