$(window).load(function(){
	$('.slider')._TMS({
		preset:'zabor',
		easing:'easeOutQuad',
		duration:800,
		pagination:true,
		slideshow:6000})
	$('.pagination li').hover(function(){
		if (!$(this).hasClass('current')) {
			$(this).find('a').stop().animate({backgroundPosition:'20 0'},600,'easeOutBack')	;
			Cufon.replace($(this).find('a span'), { fontFamily: 'Myriad Pro', textShadow:'#332623 0 0', color:'#332623' });
		}
	},function(){
		if (!$(this).hasClass('current')) {
			$(this).find('a').stop().animate({backgroundPosition:'300 0'},600,'easeOutBack');
			Cufon.replace($(this).find('a span'), { fontFamily: 'Myriad Pro', textShadow:'#fff 0 0, #000 2px 1px', color:'#fff' });
		}
	})
})

