$(document).ready(function() {
	
	/* */
	/* Initiates a Datepicker drop down */
	/* */
	$(".datepicker").datepicker({ 
		showAnim: 'slideDown',
		dateFormat: 'yy-mm-dd 10:00'
	});
	
	
	/* */
	/* Hides Flash Notices */
	/* */
	$('.flash').click(function() {
		$(this).fadeOut(800, function() {
				$(this).hide();
		});
	});
	
});
