jQuery(document).ready(function() {
		
	jQuery("div.block:nth-child(even)").addClass('even');
	jQuery("div.casestudies ul li:nth-child(2n)").addClass('two');
	jQuery("div div.casecol:nth-child(2n+2)").addClass('two');
	jQuery("div div.casecol:nth-child(2n+3)").addClass('three');
	jQuery(".testimonials li blockquote p:last-child").addClass('last');
	jQuery("blockquote p:last-child").addClass('last');
	jQuery("ul#navigation li:last-child").addClass('last');
	jQuery("#content .post .entry .team-box ul li:nth-child(2n+3)").addClass('second');
	
});
