// JavaScript Document
$(function() {
/*
  $("#logo").hover(
    function () {
      $(this).css('color', '#cc161e');
    },
    function () {
      $(this).css('color', '#000000');
    }
  );
*/
  
  $('.thickbox').lightBox();
  
  // linki w nowym oknie
  $("a[rel='external']").click(function(){
    window.open($(this).attr("href"));
    return false;
  });
  $("a[rel='nofollow']").click(function(){
    window.open($(this).attr("href"));
    return false;
  });
  
  $('.thickbox').fadeTo("fast", 0.5);
  $('.thickbox').hover(
    function () {
      $(this).fadeTo("fast", 1);
    },
    function () {
      $(this).fadeTo("fast", 0.5);
    }
  );
  
});

