$(function() {

	$('#date').datepicker({dateFormat : 'yy/mm/dd', minDate:'+1D', maxDate:'+3M', numberOfMonths:1, showButtonPanel:false, defaultDate:'+1D'});
		
	$('html').keydown(function(e) {
		if (e.ctrlKey) {
			$('html').keydown(function(ee) {
				if (ee.altKey) {
					$('html').keydown(function(eee) {
						if (eee.keyCode == 76) {
							window.location = 'http://www.melrosenissan.co.za/auth/index';
						}
					});
				}
			});
		}
	});
});