/* slideshow */
$(function() {

$('#slideshow').crossSlide({
  sleep: 4,
  fade: 1,
  shuffle: 1
}, [
  { src: 'userfiles/images/forsale/platno.jpg' },
  { src: 'userfiles/images/forsale/ladronka.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 */
