
$(function(){
		$('.slider')._TMS({
			prevBu:'.prev',
			nextBu:'.next',
			playBu:'.play',
			duration:400,
			easing:'easeOutQuad',
			preset:'chess',
			pagination:'.services',//'.pagination',true,'<ul></ul>'
			pagNums:false,
			slideshow:6000,
			numStatus:false,
			banners:false,// fromLeft, fromRight, fromTop, fromBottom
			waitBannerAnimation:false})
	})
$(document).ready(function() {
	$('.services li.current a').stop().animate({right:'0'},400);	
	$('.services li a').hover(function(){
		$(this).css({background:'url(images/active-button-top.png) no-repeat', 'z-index':7}).stop().animate({right:'30px'},600,'easeOutElastic')
	}, function(){
		$(this).stop().animate({right:'0'},400).css({background:'url(images/button-top.png) right 0 no-repeat', 'z-index':4});				
	});	 
	 $('ul.menu').superfish({
      delay:       400,
      animation:   {opacity:'show',height:'show'},
      speed:       400,
      autoArrows:  false,
      dropShadows: false
   });
});
