$(document).ready(function() {
	
	$('#ball img').bind("webkitAnimationStart", function(e) {
		$('#status').html("Έναρξη κίνησης");
	});
	
	$('#ball img').bind("webkitAnimationEnd", function(e) {
		$('#status').html("Τέλος κίνησης");
	});	
	
	$('#ball img').bind("webkitAnimationIteration", function(e) {
		$('#status').html("Τέλος κύκλου");
	});
});
