$(document).ready(function(){
	//Hide the document upload boxes
	$(".open").hide();
	
	//Fade out confirmation messages
	setTimeout(function(){
		$("#flash_notice").add("#flash_error").fadeTo(2000, 0).animate({ height: 0, padding: 0, margin: 0 }, 500)
	}, 4000)
})
function showUpload(elem) {
	$(elem).parent().siblings('.open').slideToggle();
}