var PhonesBlock;
var PhonesBlockHeight;
var FlagOurShopsVisible = 0;
var BlockOurPhones;
var BlockOurPhonesHeight;
$(document).ready(function () {
  
  BlockOurPhones = $('.our-phones2');
  BlockOurPhonesHeight  = $(BlockOurPhones).height();
  DoubleBlockPosition();
  makeOurPhonesBlockAnimation();
});
function makeOurPhonesBlockAnimation()
{
  attachMouseOver();
  $('.our-phones2, .our-shops').mouseleave(function(){
    if(FlagOurShopsVisible == 1) return;
    FlagOurShopsVisible = 1;
    //$('.our-shops').mouseover(function(){});
    
    $('.our-phones2').animate({
      'top' : - BlockOurPhonesHeight + 18
    }, "slow", "swing", function(){
      FlagOurShopsVisible = 0;
      //attachMouseOver();
    });

  });
}
function attachMouseOver()
{
  
  $('.our-shops').mouseenter(function(){
    if(FlagOurShopsVisible == 1) return;
    FlagOurShopsVisible = 1;
    $('.our-phones2').show();
    $('.our-phones2').animate({
      'top' : 0
    }, "fast", "swing",function(){
      FlagOurShopsVisible = 0;
    });

  });
}
function DoubleBlockPosition()
{
  //var Obj = $('.our-phones2');
  BlockOurPhones.css({top: - BlockOurPhonesHeight + 18});
  
}

