$(document).ready(function() {
	var toOpen = 'View more &darr;';
	var toClose = 'View less &uarr;';
	$.each($('.clients .seemore a'), function() {
		$(this).click(function(e) {
			e.preventDefault();
			if ($(this).hasClass('open')) {
				var h = $(this).attr('href').substring(1);
				$('#clist'+h+' .more').css('display','none');			
				$(this).removeClass('open');		
				$(this).html(toOpen);				
			} else {
				var h = $(this).attr('href').substring(1);
				$('#clist'+h+' .more').css('display','block');
				$(this).addClass('open');
				$(this).html(toClose);				
			}	
		});	
	});

});
