﻿
jQuery.noConflict();

jQuery(document).ready(function() {
      

      jQuery(".RateIconRed").click(function() {

		alert("Daha önce bu ürüne oy kullandınız");
				
        }); 
        
    jQuery(".RateIcon").click(function(){
     
     
     var oy=1;
     
    // if(jQuery(this).attr("id")=="kotu") oy=-1;
     
      var urunid=jQuery(this).attr("id").replace("rate","");
 
                 jQuery("#rate"+urunid+" img").attr("src","images/iyired.gif");		
                 jQuery("#rate"+urunid+" img").animate({opacity: "0.5"});
                 
        jQuery.ajax({  
            type: 'get',  
            url: 'rate_this.aspx',  
            data: 'ajax=1&id='+ urunid  +'&oy=' + oy,  
            success: function() {  


              //  jQuery("div#oy div").attr("class", "s1");
              //  jQuery("div#oy div:lt("+ad+")").toggleClass('s3');
             var yeni=parseInt( jQuery("#RateText"+urunid+" .oyvalue").html() );
              yeni+=oy;
              
                jQuery("#RateText"+urunid+" .oyvalue").html( yeni );

    
            }  
        }); 
        
     }); 
     
      
		
});

