$(function() {
  photoGallery();
  datePicker();
 $('#homeBody .three').animate({ opacity: 1 }, 1000, 'easeInBack');
});

function photoGallery() {
	if($('#gallery').length > 0) {
		$(window).load(function() {
      $('#wait').hide('fast');
			$('#gallery').galleria();
      $('#gallery').slideDown('slow');
    });
	}
	
	
}
function datePicker() {
  if($("#date").length > 0) {
    $("#date").datepicker({
      showOn: 'both',
      buttonImage: 'images/calendar.png',
      buttonImageOnly: true
    });
  }
}

