$(document).ready(function(){
   $(".reakcia").click(function() {
      hodnota = $(this).attr("rel");
      $("#rea_" + hodnota).load("App/Module/Guestbook/Tpl/Reply.php?reakcia=" + hodnota,function()
        {
          $(this).slideToggle('slow');
        });   
    });
   
   $('.tabJumper').mouseover(function(){
	   tabId = $(this).attr('rel');
	   $('#tabs').css('background', 'url(public/design/back_tabs_on_' + tabId + '.jpg) no-repeat');
   }).mouseout(function(){
	   $('#tabs').css('background', 'url(public/design/back_tabs.jpg) no-repeat');
   });
   
   $('.lightbox').lightBox();
});
