function pitBulle(bulltext) {
	if (bulltext != ""){
		document.getElementById('bulle').innerHTML = bulltext; 
	} else {
		document.getElementById('bulle').innerHTML = ''; 
	}
}

function moveIt(obj) {
	document.getElementById(obj).style.position = 'relative';
	$('#' + obj).stop(true, true).animate({top:'-=1'},50);
	for (var i=1; i<6; i++) {
		$('#' + obj).animate({left:'-=2'},20);
		$('#' + obj).animate({left:'+=2'},20);
	}
	$('#' + obj).animate({top:'+=1'},30,function() {document.getElementById(obj).style.position = 'static';});
}
