/* Author: 

*/

jQuery(document).ready(function(){
  //kwicks begin
  $('.kwicks').kwicks({
     max : 550,
     spacing : 0,
     event : 'mouseenter'      
  });
  $('.kwicks li').hover(
    function() {
    $(this).find('.kwicks-content').addClass('hovering').slideDown('slow');
  },
  function() {
    $(this).find('.kwicks-content').css('display', 'none');
  });
  $('.view-news .views-field-links a[id]').toggle(function() {
    var a_id = $(this).attr('id');
    var splitted = a_id.split('-');
    var toggled = $('p#'+splitted[0]+'-content');
    $(this).html('Ukryj opis &raquo;')
    $(toggled).css('display', 'block');
  }, function() {
    var a_id = $(this).attr('id');
    var splitted = a_id.split('-');
    var toggled = $('p#'+splitted[0]+'-content');
    $(this).html('Pokaż opis &raquo;')
    $(toggled).css('display', 'none');
  });
/*  $('.view-news .views-row').hover(
    function () {
      var logo = $(this).find('img').attr('id');
      $(this).find('img').attr('src', '../img/'+logo+'_logo.png');
    },
    function() {
      var logo = $(this).find('img').attr('id');
      $(this).find('img').attr('src', '../img/'+logo+'_logo_bw.jpg');
    });*/
})
