$(document).ready(function ()
{
	$('#images').css('text-align','center');
	$('#images img').each(function ()
	{
		$(this).css('padding','0 15px 15px 0');
		$(this).css('vertical-align','middle');
		if ($(this).width() > 840)
		{
			$(this).css('width','810px');
		}
		else
		{
			if ($(this).width() > 810)
			{
				$(this).css('width','800px');
			}
		}
	});
})

