// HIDE FLASH NOTICES/WARNINGS AFTER A FEW SECONDS
$(document).ready(function() {
	// Check if FLASH div exists (if notice/warning was set)
	if ($('div.flashData').length > 0 ){
		$(this).delay(2000,function() {
			$('div.flashData').slideUp('slow');
		});
	}
});
