/* 
 * @see http://hoffmannkrzysztof.pl
 * @author Krzysztof Hoffmann <krzysztof.hoffmann@tro.pl>
 * @copyright 2010 (C)
 */





$(document).ready(function(){



$(".strona_popup_handle").mouseover(function(){
      $(this).next().show();
    }).mouseout(function(){
      $(this).next().hide();
    });
    
});


var imgs = new Array('iaa.jpg','piit.jpg','dig.jpg','iab.jpg');
var licznik_img=0;


$(document).ready(function(){

   rotate();

});

function rotate()
{
     licznik_img++;
     if(licznik_img==4)
          licznik_img=0;

     $("#rotate img").fadeOut(1000, function () {

          $("#rotate").html('<center><a target="blank" href="http://tro.pl/strona/pokaz/id/wyroznienia"><img style="display:none;border:none" src="http://tro.pl/public/uploaded/'+imgs[licznik_img]+'"/></a></center>');
          $("#rotate img").fadeIn('slow');

     });

     var t=setTimeout("rotate()",3000);
}
