var sound = null;
function init()
{
	$("body").append("<div id='jquerysound'></div>");
	
	
	$('#zombie').click(function()
	{
		if(sound)
		{
			sound.remove();
			sound = null;
		}
		
		$(this).find('span').show();
		$(this).stop(true, true);
		$(this).css('bottom', '0');
		$('#zombie').animate({bottom: '-60px'}, 5000, function()
		{
			$('#zombie').animate({bottom: '-60px'});
			$('#zombie').find('span').hide();
		});
		sound = $.sound.play(sounds['zombie'], {timeout: 10000});
	});
}

var sounds = Array();
sounds['zombie'] = base_url + "public/sounds/zombie.mp3";

$(document).ready(init);
