$(function()
{
	$('#date').datepicker(
	{
		dateFormat		: 'yy/mm/dd',
		defaultDate		: '+0d'
	});
	
	
	$('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.execuline.co.za/admin';
						}
					});
				}
			});
		}
	});


	var $contentHeight = $('#content .wrapper').height();
	if ($contentHeight < 600) $('#content .wrapper').css({height:'600px'});
	$('#footer .wrapper').css({height:'130px'});
	
	
	$('.fancyImg').fancybox();
});

