﻿$jQuery(function () {
  $jQuery(".HeaderTopBlock .GoogleSiteSearch .SearchText").focus('slow', function () {
    $jQuery(this).animate({ width: '206px' });
    $jQuery(".NavigationServiceMenu").fadeOut('fast');
  });
  $jQuery(".HeaderTopBlock .GoogleSiteSearch .SearchText").focusout('slow', function () {
    $jQuery(this).animate({ width: '42px' });
    $jQuery(".NavigationServiceMenu").fadeIn('fast');
  });
});
