$(function(){
		    $('.home a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '5px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		   $('.exi-vendor a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '5px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		 $('.dev-service a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '5px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		 $('.affi-service a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '5px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		 $('.cust-service a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '5px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		 $('.contact2 a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingBottom: '20px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingBottom: 0 }, 200);
		 });
		 
		 $('.left-btn a').hover(function() { //mouse in
 			$(this).stop().animate({ paddingLeft: '10px' }, 200);
				}, function() { //mouse out
 			$(this).stop().animate({ paddingLeft: 0 }, 200);
		 });
		   
		
	});
