/* CYBER-SALE IMG POPUP */
$(document).ready(function(){
  $('#cybersale .img').hover(function(){
    $thisElem = $(this);
      
    cyberOpen = setTimeout(function(){
      $thisItem = $thisElem.parents('#cybersale .item');
      $thisImgWrap = $thisElem.parent().find('.bigimg div');
      
      $('#cybersale .item').not($thisItem).css({'z-index': '0'});
      
      $thisItem.css({'z-index': '5'});
      $thisImgWrap.fadeTo(100, 1);
    }, 150);
  }, function(){
    clearTimeout(cyberOpen);
      
    $thisElem = $(this);
    $thisItem = $thisElem.parents('#cybersale .item');
    $thisImgWrap = $thisElem.parent().find('.bigimg div');
      
    $thisImgWrap.fadeTo(100, 0, function(){
      $thisImgWrap.hide();
      $thisItem.css({'z-index': '0'});
    });
  });
});
