// Replace default Open Table submit button with customized one

function init() {
	findOpenTable();
}

function findOpenTable() {
	var otButtonImage = document.getElementById('submit');
	otButtonImage.hasAttribute ? otButtonImage.setAttribute('SRC', 'images/ot_button.gif') : otButtonImage.src = 'images/ot_button.gif';
}
