$(function() {
    
      $('#przejscia').cycle({
      		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
      });
      
      $('#komunikaty').cycle({ 
        timeout: 3000, 
        cleartypeNoBg: true, 
        speed: 400,
        fx: 'scrollLeft'
      });
     
      $("#showcase_left").showcase({
			
        css: { width: "650px", height: "170px",visibility: "visible" },
				animation: { interval: 4500, stopOnHover: true, easefunction: "swing", speed: 600 },
				
				navigator: { position: "top-left",
                    css: { padding:"0px", margin: "1px 1px 1px 1px" },
                    showNumber: true,
                             item: { 
                                 css: { height:"16px", "line-height":"16px", width:"16px", backgroundColor: "white", "font-size":"10px", border:"none", margin: "0px", "text-align": "center", "vertical-align": "middle" },
                                 cssHover: { backgroundColor: "#ababab", border:"none"},
                                 cssSelected: { backgroundColor: "#dadada", border:"none"}
                             }
                },
        titleBar: { autoHide: false}
			}); 
});

function wyszukiwarka(a){
  $('.wyszukiwarka_okno').css('display', 'none');
  $('#button_wydarzenia').attr("src", "images/button_wydarzenia_off.jpg");
  $('#button_bazafirm').attr("src", "images/button_bazafirm_off.jpg");
  $('#button_klubowicze').attr("src", "images/button_klubowicze_off.jpg");
  $('#button_pks').attr("src", "images/button_pks_off.jpg");
  
  var id = '#'+a;
  var button = '#button_'+a;
  var img = 'images/button_'+a+'.jpg';
  $(button).attr("src", img);
  $(id).fadeIn('slow');
}

function add_komentarz(){

  $('#add_komentarz').animate({
    width: '100%',
    height: '220px'
  }, {
    duration: 2000, 
    specialEasing: {
      width: 'linear',
      height: 'easeOutBounce'
    }, 
    complete: function() {
      $(this).css('border-bottom', '1px solid rgb(192,192,192)');
    }
  });
  
}


