 function steluj(){
 
  var a=$("#pleft").height();
  var b=$(".cc").height();
  
 
  if (a<b) {
      $("#pleft").height(b+75);
      $("#pright").addClass('iepr');
     // if (isIE())$("#pleft").height(b+55);
  }
  if (b<a) $(".cc").height(a-75);
 }
  
      function isIE()
   
      {
   
      return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
   
      }
