window.onload = function()
{
	var today = (new Date()).getDay();

	if (today >= 1 && today <= 5) {
		document.getElementById('openingHours').getElementsByTagName('tr')[today - 1].setAttribute('class', 'today');
	}
}

