$(document).ready(function() {
	$('img').parents('p').addClass('image');

	// Not currently used but may come in useful
	$('tr:even').addClass('odd');
	$('tr:odd').addClass('even');
});
