/*	---------------------------------------------------------------------------------------------------------------

	This variant of calendar script is to support the US implementation; 
	calendar.js has code specific to the UK Marketplace / Waterhouse Sq. implementation 

	--------------------------------------------------------------------------------------------------------------- */

$(document).ready(function(){
	init();
});

function init(e) {
		//date picker
		$(function() {
			// initialise date pickers;
			$('.calendarDaily .date-pick').datePicker({startDate:'01/01/1970'});
			$('.calendarWeekly .date-pick').datePicker({startDate:'01/01/1970'});
		});
	$('.calendarTable').css('display','block');
}


