var t;
var img = ['','','','',''];
var data = [
    ['My name is Arthur Lookyanov and I\'m very glad to cheer you as a visitor of my personal web-site. Although I wasn\'t born in Moscow, I\'ve lived in the capital of Russia since I was 2 years old. That\'s why I consider myself a real Muscovite who loves this city as well as his own Motherland and respects it as a native city. \
    <div class="more"><a class="link" href="../aboutus/">Read more</a></div>' , '/images/portfolio-background.jpg'],
    ['My offer to the potential clients as well as to my repeat customers includes a big list of services I\'m ready to provide. I\'m open to new substandard tasks and going to find the best solution to every non-typical situation. There are no routine services for me. Every client and every meeting is unique, so I do my best to find that unique concept which can satisfy my client and make me proud of the work I\'ve executed. \
    <div class="more"><a class="link" href="../services/flexible-services.html">Read more</a></div>', '/images/portfolio-services.jpg'],
    ['My big passion and my main hobby are to take photos. I\'m really happy that due to my clever device I can transport the majesty of the buildings architecture and profundity of feelings on the photo paper. I\'m proud that my photos are able to remind people not only of the important events during their trip to Moscow but refresh the emotional state they\'ve got during it. \
    <div class="more"><a class="link" href="../photos/">Read more</a></div>', '/images/portfolio-photographer.jpg'],
    ['I love Moscow with all strength of my heart. And this love is so big that I\'m ready to share it with all people coming to this magnificent city. I\'m ready to reveal all secrets of this city to all guests coming here. It is impossible not to fall in love with Moscow after seen everything I can show. Just let me try! \
    <div class="more"><a class="link" href="../tours/">Read more</a></div>', '/images/portfolio-tours.jpg'],
    ['I\'m sure every meeting between people - is a very important event in life of both those persons. Every my client - is a significant part of my life. I\'m a lucky man because due to my job I have sincere friends all over the world. It\'s a great honor for me when they feel the same and think about days they\'ve spent in Moscow as about a bright event in their life. I really want to make people\'s life more colorful and rich of events. \
    <div class="more"><a class="link" href="../responses/">Read more</a></div>', '/images/portfolio-responses.jpg']
  ];
for ( i = 1; i <= 5; i++ )
{
  img[i-1] = new Image();
  img[i-1].src = data[i-1][1];
}


function toggleHead( id ) {
  clearTimeout(t);
  document.getElementById("var-block").innerHTML = data[id-1][0];
  document.getElementById("var-photo").src = img[id-1].src;
  for ( i = 1; i <= 5; i++ )
    document.getElementById("var-li"+i).className = '';
  document.getElementById("var-li"+id).className = 'active';
  
  //rotation
  id++;
  if ( id > 5 )
    id = 1;
  t = setTimeout("toggleHead(" + id + ")", 20000)
}
