﻿/*
	Fix for the pricelist table so that every odd row is marked with the dark class.
*/
$(document).ready(function () {
	$('table.priceList tr').each(function (index) {
		$(this).removeClass('dark');
	});
	$('table.priceList tr:nth-child(2n+1)').each(function () {
		$(this).addClass('dark');
	});
});
