Cufon.replace('#navigation a, .pagetitle a', { hover: true });
Cufon.replace('.katerino');
Cufon.replace('.stroke', { textShadow: '#fff -3px 3px, #fff 0px 3px, #fff 3px 3px, #fff -3px 0px, #fff 3px 0px, #fff -3px -3px, #fff 0px -3px, #fff 3px -3px'});

jQuery(function($) {
	$('#footer .menu li:first').addClass('first')
	$(window).load(function() {
		$('#slider').nivoSlider({
			effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
			slices: 15,
			animSpeed: 500, //Slide transition speed
			pauseTime: 3000,
			startSlide: 0, //Set starting Slide (0 index)
			directionNav: false, //Next & Prev
			directionNavHide: true, //Only show on hover
			controlNav: false, //1,2,3...
			controlNavThumbs:false, //Use thumbnails for Control Nav
	      	controlNavThumbsFromRel:false, //Use image rel for thumbs
			keyboardNav:true, //Use left & right arrows
			pauseOnHover: false, //Stop animation while hovering
			manualAdvance: false, //Force manual transitions
			slideshowEnd: function(){} //Triggers after all slides have been shown
		});
		$('#slider-shop').nivoSlider({
			effect:'sliceDown', //Specify sets like: 'fold,fade,sliceDown'
			slices: 15,
			animSpeed: 500, //Slide transition speed
			pauseTime: 3000,
			startSlide: 0, //Set starting Slide (0 index)
			directionNav: false, //Next & Prev
			directionNavHide: true, //Only show on hover
			controlNav: false, //1,2,3...
			controlNavThumbs:false, //Use thumbnails for Control Nav
	      	controlNavThumbsFromRel:false, //Use image rel for thumbs
			keyboardNav:true, //Use left & right arrows
			pauseOnHover: true, //Stop animation while hovering
			manualAdvance: false, //Force manual transitions
			slideshowEnd: function(){} //Triggers after all slides have been shown
		});
		setInterval(function() {
			$('.bottom-content ul li.active').each(function() {
				$(this).removeClass('active').fadeOut();
				var next = $(this).nextAll('li.' + $(this).attr('rel') + ':first');
				if ( !next.length ) {
					next = $('.bottom-content ul li.' + $(this).attr('rel') + ':first');
				};
				next.addClass('active').fadeIn();
			});
		}, 3000);
	});
})




