// JavaScript Document
//<![CDATA[
jscurid="";
function playsound(snd) {
		document.getElementById(snd).play();
}
function hideTip() {
   divTip = document.getElementById("divTip");
   divTip.innerHTML ="<br />";
   jscurid="";
}
function showTip(id) {
	jscurid=id;
   divTip = document.getElementById("divTip");
   msg="";
   var request = new XMLHttpRequest();
   request.open("GET", "http://www.hello-world.com/helloworld/include/getVocab.php?id="+jscurid, false); //this includes a text file
   request.send(null);
   if (request.status == 200){ //we got a resopnse
      msg=request.responseText;
   } //end if
   divTip.innerHTML = request.responseText+"<br />";  
} //end showTip

function playTip(id) {
   
   snd="";
   var request = new XMLHttpRequest();
   request.open("GET", "http://www.hello-world.com/helloworld/include/getVocSound.php?id="+id, false);
   request.send(null);
   if (request.status == 200){ //we got a resopnse
      snd=request.responseText;
	  //alert(snd);	  
      soundDiv=document.getElementById('mySound');
      soundDiv.innerHTML="<audio id=snd"+id+"><source src='/"+snd+".ogg' type='audio/ogg' /><source src='/"+snd+".mp3' type='audio/mp3' /></audio>";
      tipSound=document.getElementById('snd'+id);
	  tipSound.play();
	}
} //end playVocab
function touchStart(event,id) {
	playTip(id);
	event.preventDefault();
	//alert(id);
   	return false;
}
 //]]>
