  $(document).ready(function() {
    var options = { 
        target:        '#rating-area-main',
        beforeSubmit:  showRequest,
        success:       showResponse
    }; 
 
    $('#submit-rating').ajaxForm(options); 
 });
 
function showRequest(formData, jqForm, options) { 
    var queryString = $.param(formData);
    
    if(document.getElementById('please-wait') != null)
      document.getElementById('please-wait').innerHTML = '&nbsp;<img src="/web/public/images/ind_circ.gif" height="10" width="10" alt=""> odota...';
    
    if(document.getElementById('rating-buttons') != null)
      document.getElementById('rating-buttons').style.visibility = 'hidden';
    
    if(document.getElementById('your-rating') != null)
      document.getElementById('your-rating').innerHTML = '&nbsp;<img src="/web/public/images/ind_circ.gif" height="10" width="10" alt=""> odota...';

    return true; 
} 
 
function showResponse(responseText, statusText) {
   if(document.getElementById('please-wait') != null)
      document.getElementById('please-wait').innerHTML = '&nbsp;&laquo; arvosanasi';
   
   if(document.getElementById('rating-buttons') != null)
      document.getElementById('rating-buttons').style.visibility = 'visible';
      
    if(document.getElementById('your-rating') != null)
      document.getElementById('your-rating').innerHTML = '<br>';
}