/**
* Ротация картинок на главной
*/
function theRotator() 
{
  $('#image_rotate table td').css({opacity: 0.0});
  $('#image_rotate table td:first').css({opacity: 1.0});  
  setInterval('rotate()',5000);
  
}

function rotate() 
{  
  var current = ($('#image_rotate table td.show')?  $('#image_rotate table td.show') : $('#image_rotate table td:first'));
  if ( current.length == 0 ) current = $('#image_rotate table td:first');
  var next = ((current.parent().next().find('td').length) ? ((current.parent().next().find('td').hasClass('show')) ? $('#image_rotate table td:first') :current.parent().next().find('td')) : $('#image_rotate table td:first'));
  next.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 1000);
  current.animate({opacity: 0.0}, 1000).removeClass('show');
  
}


$(document).ready(function(){
 // ссылки на главной странице
  $('#Header h2 a img').click(function() {
        if($(this).parents('a').attr('href')) window.location = $(this).parents('a').attr('href');
    });
    
  /**
  * ротация фото профессора
  */
  if($("#image_rotate").length)
  {
    theRotator();
    $('#image_rotate').fadeIn(1000);
    $('#image_rotate table td').fadeIn(1000); 
    $('#image_rotate').css('visibility','visible');
  }
   
});  

