﻿$(document).ready(function() {


  $("#logo").click( function () { window.location.href='/';  });
  $("#rss").click( function () { window.location.href='/system/rss.rss';  });



  $(".index-showblock").mouseover( function () {                                                              
    $("img",this).animate({marginTop: '-20', width: '170px', height: '150px', marginLeft: '-5'}, 200);
  }).mouseleave(function() {
    $("img",this).animate({marginTop: '0', width: '160px', height: '140px', marginLeft: '0'}, 200);
  });


  $(".clients-list img").mouseover( function () {                                                              
    $(this).animate({opacity: '1'}, 200);
  }).mouseleave(function() {
    $(this).animate({opacity: '0.3'}, 200);
  });


  $('.tooltip').tooltip({
	track: true,
	delay: 0,
	showURL: false,
	showBody: " - ",
	fade: 250
  });


});
