$(document).ready(function() {
  $('.search input[type=text]').DefaultValue('hledat');
  $('.news-form input[type=text]').DefaultValue('váš email');
  $("a[rel^='prettyPhoto']").prettyPhoto();
  $('.bookmarks li a').TabSwitch();
  $('ul.slider > li img').fixPNG({});
  $('.slider').cycle({
    fx: 'fade',
    speed: 1000,
    timeout: 4000
  });
});

jQuery.fn.TabSwitch = function() {
  $(this).click(function() {
    var index = $(this).parent('li').index();
    $(this).parents('ul').find('li a').removeClass('active');
    $(this).addClass('active');
    $(this).parent().parent().parent().find('div.bookmark-block').removeClass('show-block').addClass('hide');
    $(this).parent().parent().parent().find('div.bookmark-block:eq('+index+')').removeClass('hide').addClass('show-block');
    return false;
  });
  return false;
};
