$(document).ready(function(){
  $('.image').fadeTo(0, 0.4);
	  
  $('.image img').mouseover(function(){
      $(this).parent().parent().fadeTo(400, 1);
  }).mouseout(function(){
      $(this).parent().parent().fadeTo(400, 0.4);
  }); 

  $('#share img').fadeTo(0, 0.4);
  
  $('#share img').mouseover(function(){
      $(this).fadeTo(400, 1);
  }).mouseout(function(){
      $(this).fadeTo(400, 0.4);
  }); 
  
  
  $("a[rel='box']").colorbox({
    slideshow: true,
    slideshowSpeed: 4000,
    slideshowAuto: false,
    slideshowStart: "Start",
    slideshowStop: "Stop",
    current: "{current} z {total}",
    previous: "Předchozí",
    next: "Další",
    close: "Zavřít",
    maxWidth: "100%",
    maxHeight: "100%"
    });
});

