// <![CDATA[
// Всплывающие подсказки
  $(function() {
    if ($.browser.msie && $.browser.version.substr(0,1)<7)
    {
      $('.tooltip').mouseover(function(){
            $(this).children('span').show();
          }).mouseout(function(){
            $(this).children('span').hide();
          })
    }
  });
// Слайдер
$(document).ready(function(){
    $('#slideshow').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 4000,
        pager:  '#slider_nav',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slider_nav li:eq(' + (idx) + ') a';
        }
    });
});
// Для DOC документов смена цвета
$(document).ready(function(){
	$('div.filetype_doc').hover(
	  function(){
		$(this).stop().animate({backgroundColor: "#faffaf"}, 500);
	  }, 
	  function(){
		$(this).stop().animate({backgroundColor: "#e0e0e0"}, 300);
	  });
});
// Для XLS Таблиц смена цвета
$(document).ready(function(){
	$('div.filetype_xls').hover(
	  function(){
		$(this).stop().animate({backgroundColor: "#faffaf"}, 500);
	  }, 
	  function(){
		$(this).stop().animate({backgroundColor: "#e0e0e0"}, 300);
	  });
});
// ]]>
