/* slideshow */
$(function() {

$('#slideshow').crossSlide({
  sleep: 4,
  fade: 1,
  shuffle: 1
}, [
  { src: 'http://eurotrialog.cz/obr/slideshow/1.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/2.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/3.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/4.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/5.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/6.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/7.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/8.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/9.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/10.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/11.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/12.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/13.jpg' },

  { src: 'http://eurotrialog.cz/obr/slideshow/15.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/16.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/17.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/18.jpg' },
  { src: 'http://eurotrialog.cz/obr/slideshow/19.jpg' }
]);

});
/* /slideshow */


/* greyscale efect */	
$(document).ready(function() {

	$(".hover").hover(function() { //On hover...
		var thumbOver = $(this).find("img").attr("src"); //Get image url and assign it to 'thumbOver'
		$(this).find("a.thumb").css({'background' : 'url(' + thumbOver + ') no-repeat center bottom'});
		$(this).find("span").stop().fadeTo('normal', 0 , function() {
			$(this).hide() //Hide the image after fade
		});
	} , function() { //on hover out...
		//Fade the image to full opacity 
		$(this).find("span").stop().fadeTo('normal', 1).show();
	});

});
/* /greyscale efect */
