/*
	window.onload = function()
	{
		var lis = document.getElementById('cssdropdown').getElementsByTagName('li');
		for(i = 0; i < lis.length; i++)
		{
			var li = lis[i];
			if (li.className == 'headlink')
			{
				li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
				li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
			}
		}
	}
	 or with jQuery: */
	$(document).ready(function(){
	
	
     $('a.lightbox').lightBox({
      	overlayBgColor: '#FFF',
      	overlayOpacity: 0.6,
      	imageLoading: path+'gfx/lightbox-ico-loading.gif',
      	imageBtnClose: path+'gfx/lightbox-btn-close.gif',
      	imageBtnPrev: path+'gfx/lightbox-btn-prev.gif',
      	imageBtnNext: path+'gfx/lightbox-btn-next.gif',
      	containerResizeSpeed: 350,
      	txtImage: 'Obraz',
      	txtOf: 'z'
     });	
	
	
		$('#cssdropdown li.headlink').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
	
  
    $("a#pokaz_wiecej").toggle(
      function () {
        $(this).remove();
        $("#wiecej").slideDown();
      },
      function () {
        $("#wiecej").slideUp();
      }
    );
  
     $("a.ukryj_nastepny_h6").toggle(
      function () {
//         $(this).remove();                     
        $(this).parents('p:first').next("h6").slideDown();
      },
      function () {
        $(this).parents('p:first').next("h6").slideUp();
      }
    );
   
  
      
  
  });

