$(document).ready(function() {
	var portraitCount = $("#home a").length;
	
	if (portraitCount >= 9) {
		$("#home a").each(function() {
			$(this).addClass("condensed");
		});
	}
});
