$(document).ready(function()
{
    // uvodny slide
    $('#promo-slide').cycle({
		fx: 'fade',
        speed: 1500		
	});
	
	$(function() {

    // galeria
	$(".scrollable").scrollable();

    $(".thumbs img").click(function() {

	    if ($(this).hasClass("active")) { return; }

	    var url = $(this).attr("src").replace("_small", "");

	    var wrap = $("#big-image").fadeTo("medium", 0.5);

	    var img = new Image();

	    img.onload = function() {

		    wrap.fadeTo("slow", 1);

		    wrap.find("img").attr("src", url);

	    };

	    img.src = url;

	    $(".thumbs img").removeClass("active");
	    $(this).addClass("active");

        }).filter(":first").click();
    
	});
	
});

