function starboxThankYou(event) {
  /* Here's how to show a simple thank you message,
     Some demos use it using the custom event 'starbox:rated', but this could also be used on onRate.

     You could use the same technique to show error/success using the callback function in your Ajax.Request:
	*/	 	 
//	 new Ajax.Request('/ajax_call.php', {
//	   parameters: event.memo,
//       onComplete: function(transport) {
//       		alert(transport.responseText)
//       }
//	 }
//	   onFailure: function() { ... },
//	   onLoading: function() { ... }
//	 );
   /*	 
     More on Ajax.Request: http://www.prototypejs.org/api/ajax/request
  */
  var indicator = event.findElement('.starbox').down('.indicator'),
  restore = indicator.innerHTML;
  indicator.update('Thanks for voting');
  (function() { indicator.update(restore) }).delay(2);
}



