    $(document).ready(function(){ 
        $(document).pngFix(); 
    }); 

function blink(time, interval){
    var timer = window.setInterval(function(){
        $(".transitionlogo").css("opacity", "0.9");
        window.setTimeout(function(){
            $(".transitionlogo").css("opacity", "1");
        }, 100);
    }, interval);
    window.setTimeout(function(){clearInterval(timer);}, time);
}

$(document).ready(function() {
	  blink(900000, 100);
    });

$(document).ready(function() {
	   $("body").css({'text-shadow' : '1px 1px #000'});
           $("a").css({'text-shadow' : '1px 1px #000'});
    });

$(document).ready(function() {
	$('li.cat-item').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '2px' }, 400);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 400);
	});
});

	$(document).ready(function($){
		$("#slider").jqFancyTransitions({
			effect: 'zipper', // wave, zipper, curtain
			width: 430, // width of panel
			height: 180, // height of panel
			delay: 7000, // delay between images in ms
			strips: 27,
			stripDelay: 80, // delay beetwen strips in ms
			titleOpacity: 0.7, // opacity of title
			direction: 'random', // left, right, alternate, random, fountain, fountainAlternate
			navigation: false, // prev and next navigation buttons
			links: true // show images as links
		}); 
	});

	$(document).ready(function($){
		$("#slidermini").jqFancyTransitions({
			effect: 'zipper', // wave, zipper, curtain
			width: 250, // width of panel
			height: 141, // height of panel
			delay: 11000, // delay between images in ms
			strips: 12,
			stripDelay: 80, // delay beetwen strips in ms
			titleOpacity: 0.7, // opacity of title
			direction: 'random', // left, right, alternate, random, fountain, fountainAlternate
			navigation: false, // prev and next navigation buttons
			links: true // show images as links
		}); 
	});
