$(document).ready
(
	function()
	{
		$("select#navSelect option").each
		(
			function()
			{
				if($(this).text() == pageTitle)
				{
					$(this).attr("selected", "selected");
					return;
				}
			}
		);
		$("select#navSelect").bind
		(
			"change",
			function()
			{
				self.location.href = $(this).val();
			}
		);
		$("input.datePicker").datepicker({changeYear: true, dateFormat: "yy-mm-dd"});
	}
);
