$(function(){
	$('#slider')._TMS({
		prevBu:'.prev',
		nextBu:'.next',
		playBu:'.play',
		duration:800,
		easing:'',
		preset:'diagonalExpand',
		pagination:true,
		slideshow:6000,
		numStatus:true,
		banners:false,
		bannerShow:function(banner){
			banner
				.css({left:'-100%',top:'50%'})
				.stop()
				.animate({left:'200px'})
		},
		bannerHide:function(banner){
			banner
				.stop()
				.animate({top:'-100%'})
		},
		progressBar:'<div class="progbar"></div>'})
})

