// initialize the jquery code
 $(document).ready(function(){
//close all the content divs on page load
$('.programy').hide();

// fade in and out
$('#fadeInOut').toggle(function() {
$(this).siblings('.programy').fadeIn('slow');
}, function() {
$(this).siblings('.programy').fadeOut('slow');
});


});

jQuery(document).ready(function($) {
  $('a[rel*=facebox]').facebox()
}) 