jQuery(function($) {
	$('.footer-menu li').each(function() {
		var idx = $('.footer-menu li').index($(this));
		if ( (idx + 1) % 3 == 0) {
			$(this).find('span').addClass('trans');
		}
	});
});
