﻿Home = {
	init: function () {
		// Wire up the submit button and links on the players results 
		$('#PlayersSearchButton').click(function () {
			$('#PlayersSearchForm').submit();
		});
	}
}

$(document).ready(Home.init);
