
//=======================================================================================================================================================
/**
* Скрывает панель "карта сайта"
*/
function SiteMapOut (block) { $(block).hide(200); }
//=======================================================================================================================================================
/**
* Подсказка для экшенов
*/
function Hint (text)
{


}
//=======================================================================================================================================================
$(document).ready(function(){
      $("a[rel='example1']").colorbox();
      $("a[rel='example2']").colorbox({transition:"fade"});
      $("#click").click(function(){
         $('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
         return false;
      });
   });
//=======================================================================================================================================================
function go(id) {
   window.location = "http://tkpss.ru/?do=blocks&Id="+id;
}
//=======================================================================================================================================================
function go_home() {
   window.location = "http://tkpss.ru/";
}
//=======================================================================================================================================================
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-19388793-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

//=======================================================================================================================================================
/**
*  ГОРИЗОНТАЛЬНАЯ НАВИГАЦИЯ
*/
$.fn.droppy = function(options) {

  options = $.extend({speed: 1}, options || {});

  this.each(function() {

    var root = this, zIndex = 1000;

    function getSubnav(ele) {
      if (ele.nodeName.toLowerCase() == 'li') {
        var subnav = $('> ul', ele);
        return subnav.length ? subnav[0] : null;
      } else {
        return ele;
      }
    }

    function getActuator(ele) {
      if (ele.nodeName.toLowerCase() == 'ul') {
        return $(ele).parents('li')[0];
      } else {
        return ele;
      }
    }

    function hide() {
      var subnav = getSubnav(this);
      if (!subnav) return;
      $.data(subnav, 'cancelHide', false);
      setTimeout(function() {
        if (!$.data(subnav, 'cancelHide')) {
          $(subnav).slideUp(options.speed);
        }
      }, 1);
    }

    function show() {
      var subnav = getSubnav(this);
      if (!subnav) return;
      $.data(subnav, 'cancelHide', true);
      $(subnav).css({zIndex: zIndex++}).slideDown(options.speed);
      if (this.nodeName.toLowerCase() == 'ul') {
        var li = getActuator(this);
        $(li).addClass('hover');
        $('> a', li).addClass('hover');
      }
    }

    $('ul, li', this).hover(show, hide);
    $('li', this).hover(
      function() { $(this).addClass('hover'); $('> a', this).addClass('hover'); },
      function() { $(this).removeClass('hover'); $('> a', this).removeClass('hover'); }
    );

  });

};
//=======================================================================================================================================================
