$(window).load(function(){
	$("#slideshow").innerfade({
        animationtype: 'fade',
        speed: 'slow',
        timeout: '3000',
        type: 'random_start',
        containerheight: '191px',
        runningclass: 'innerfade'
	});

	$("a.fancy").fancybox();


    $('#oferta').masonry({
        itemSelector: 'li'
    });


    $('#product a.fancy span').css({
        bottom: "-32px",
        right: "-32px"
    });
    
    $('#product a.fancy').hover(
        function(e){
            $(this).find("span").animate({
                bottom: "5px",
                right: "5px"
            }, 100);
        },
        function(e){
            $(this).find("span").animate({
                bottom: "-32px",
                right: "-32px"
            }, 300);        
        }
    );


});

