﻿$(document).ready(function(){
   
   $('.ProductImage').each(function(){
      
      if (this.width==160)
      {
        this.width=80;
        this.height=60;
      }
      else
      {
        this.width=65;
        this.height=65;
      }
   });
   
   $('.ProductSpecial').each(function(){
      
      if (this.width==160)
      {
        this.width=80;
        this.height=60;
      }
      else
      {
        this.width=65;
        this.height=65;
      }
   });
   
   $('.ProductSpecialBig').each(function(){
      
      if (this.width==160)
      {
        this.width=130;
        this.height=98;
      }
      else
      {
        this.width=98;
        this.height=98;
      }
   });
   
   
   
});

