/**
 * @author joemoore
 */
jQuery(document).ready(function($){
	if ($('body').hasClass('page-id-6')) {
		var items = $('li.category-video');
		var biggest = 0;
	
		items.each(function(){
			if ($(this).height() > biggest){
				biggest = $(this).height();
			}
		});
	
		items.each(function(){
			$(this).height(biggest);
		});
	}
});
	