$(function(){if($('.slider').length) {		
		
			$('.slider')._TMS({
				prevBu:'.button_prev',
				nextBu:'.button_next',
				duration:800,
				easing:false,
				preset:'fadeThree',
				pagination:true,//'.pagination',true,'<ul></ul>'
				pagNums:false,
				slideshow:6000,
				numStatus:false,
				banners:false,// fromLeft, fromRight, fromTop, fromBottom
				waitBannerAnimation:false,
				progressBar:false
				})
				   } })
			$(function(){
			$('.link-1').hover(
							function(){$(this).stop().animate({backgroundColor:'#fff'},300)},
							function(){$(this).stop().animate({backgroundColor:'#f55402'},500)}
							);
			$('.link-2').hover(
							function(){$(this).stop().animate({backgroundColor:'#000'},300)},
							function(){$(this).stop().animate({backgroundColor:'#f55402'},300)}
							);
			$('.list-2 li a').hover(
							function(){$(this).stop().animate({backgroundColor:'#2c2829'},300)},
							function(){$(this).stop().animate({backgroundColor:'#d9d5d6'},300)}
							);
			$('.list-2 li:even a').hover(
							function(){$(this).stop().animate({backgroundColor:'#2c2829'},500)},
							function(){$(this).stop().animate({backgroundColor:'#f2edee'},500)}
							);
			$('.list-2 li:even a').addClass('alt');
			$('.quote_block').hover(
							function(){$(this).stop().animate({backgroundColor:'#fff'},300)},
							function(){$(this).stop().animate({backgroundColor:'#f5f4f5'},500)}
							);
		})
