/* 
 * Utero 2011 - build 1.0
 * Javascript to handle sounds
 * jackingprod 2011
 */

// Sounds
// button sound
buttonSound = document.getElementById('buttonSound');
buttonSound.src = 'template/juice/botao.ogg';
// error sound
errorSound = document.getElementById('errorSound');
errorSound.src = 'template/juice/error.ogg';
// background music
backgroundSound = document.getElementById('backgroundSound');
backgroundSound.src = 'template/juice/background.ogg';
backgroundSound.play();
// **
