$(document).ready(function(){


 /* * * * * Behavior effects * * * * */

    // Smooth scroll
    //$.localScroll();


  // Price tables styling
  $('table.cenik.active tr:first-child').addClass('row-0');
  $('table.cenik.active tr:odd').addClass('row-2');
  $('table.cenik.active tr:even').addClass('row-1');
  $('table.cenik.active tr td:last-child').addClass('last-td');
  $('table.cenik.active tr:last-child td').addClass('last-tr');

  $('table.cenik.active tr:not(.row-0)').hide();
  $('table.cenik.active tr.row-0 td').click( function() {
		$(this).parents('tbody').children('tr').not('.row-0').slideToggle('slow');
  });

  // Image link fix
  $('img').parents('a').addClass('imgLink');
  $('#content img').parents('a:not(.external)').attr('rel','prettyPhoto[a]');
  // Prettyphoto
  $("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed: 'slow',	opacity: 0.40,	showTitle: true, allowresize: true, theme:'facebook'});

});


