$(document).ready(function() {
	$('#client-container tbody tr:nth-child(even)').addClass('even');
	$('#client-container tbody tr:nth-child(odd)').addClass('odd');
	

	var displayed = false;
	$("#client-container img").each(
		function(i) {
			frame_height = $(this).parents('tr').height();
			
			if (frame_height > $(this).height()) {
				$(this).css("top", (frame_height - $(this).height()) /2);
			}				
		}
	);
});
