$(window).load(function(){
	$('.slider')._TMS({
		playBu:'.play',
		preset:'diagonalExpand',
		easing:'easeOutQuad',
		duration:800,
		slideshow:6000})
	$('.bunners > div').hover(function(){
		$(this).find('h5').stop().animate({paddingLeft:'30'},600,'easeOutBack');
		$(this).find('h4').stop().animate({paddingLeft:'30'},600,'easeOutBack');						 
	},function(){
		$(this).find('h5').stop().animate({paddingLeft:'21'},600);
		$(this).find('h4').stop().animate({paddingLeft:'0'},600);						 
	})
})

