// JavaScript Document
   $(function() {  
	$('.thanks').hide();
  	 $(".star").click(function() {  
							   
        // validate and process form here  
		
      	 	//$("label#thanks_label").show();  
     	  var star = $('input[name=star]').val();  
		   var id = $('input[name=id]').val(); 
		   var count = $('input[name=count]').val(); 
		    var total = $('input[name=total]').val();
		 var dataString = 'star='+ star+'&id='+id+'&count='+count+'&total='+total;  
 //alert (dataString);return false;  
 $.ajax({  
   type: "POST",  
   url: "rate_submit.php",  
   data: dataString,  
   success: function() {  
     $('#rating').html("<div id='message'></div>");  
     $('#message').html("Thank you for rating ")  
     <!--.append(dataString)  -->
     .hide()  
     .fadeIn(1500, function() {  
      $('#message');  
     });  
   }  
 });  
 return false;

      });  
    });  
   
   // JavaScript stardis Document
   $(function() {  
	$('.thanks').hide();
  	 $(".stardis").click(function() {  
							   
        // validate and process form here  
		
      	 	//$("label#thanks_label").show();  
     	  var stardis = $('input[name=stardis]').val();     
		 var dataString = 'stardis='+ stardis;  
 //alert (dataString);return false;  
 $.ajax({  
   /*type: "POST",  
   url: "submit.php",*/  
   data: dataString,  
   success: function() {  
     $('#ratingdis');  
     $('#message') 
     .append(dataString)  
     .hide()  
     .fadeIn(1500, function() {  
      $('#message');  
     });  
   }  
 });  
 return false;

      });  
    });  
