$(document).ready(function() {

// main menu
var mesto = 582;
 $('#main_menu div').each(function() {
  $(this).css({'right': mesto+'px', 'z-index': mesto});
  mesto -= 190;
  $(this).children('a').css('margin-top', (42 - $(this).children('a').height()) / 2);
 });

 // rotator img
 var k = 1;
 rotate = function() {
  play = setInterval(function() {
   $('#person div').hide(0, function () {
     if(++k > 4) {k = 1;}
     $(this).removeClass().addClass('p' + k).show();
   });
   $('#collage div').hide(0, function () {
     if(++k > 3) {k = 1;}
     $(this).removeClass().addClass('p' + k).show();
   });
  }, 5000); //Интервал 5 секунд
 };
 
 rotate();
})
