$(function(){
	
	$('.box-service').each(function(i,e){
		
		$(this).css({'z-index':300-i});
		$(this).children('.right').css({'z-index':200-i-1});
		
		});
	
	$('.box-service').hoverIntent(function(){
		
		$(this).children(".right").animate({'width': '184px', 'left':'190px','opacity':'1'});
		$(this).children(".left").css({'background-color': '#6d6e71','color':'#fff'});
		
		},function(){

		$(this).children(".right").animate({'width': '0px', 'left':'0px','opacity':'0'});
		$(this).children(".left").css({'background-color': '#fff','color':'#6d6e71'});
		
		});
	
	
	});
