$(document).ready(function(){

 $('#header_inner').cycle({
                fx:      'fade',
                speed:    1000, 
                timeout:  5000,
                pause:    1
});        

  $(".box500 tr:odd").addClass("odd");
  $('a.lightbox').lightBox({fixedNavigation:true});
  
  $(".galleryImageBig").fadeIn(1500);
  $(".galleryImageText").fadeIn(1500);
  
  $("a.thumb").click(function(){
  var src = "/image.php?img="+$(this).attr("href");
  var popis = $(this).find("img").attr("alt");
  var i = '<img src="'+src+'" alt="'+popis+'" />';
  $(".galleryImageText").html("<h3>"+popis+"</h3>");
  $(".galleryImageBig").addClass("loading");
  $(".galleryImageBig").load(src, function(){
    $(".galleryImageBig").removeClass("loading");
 });;
  return false;
  });
});
