$(document).ready(function(){
	//Rolling up custom flash messages
	$('.msg_base span.close a').click(function(e){
		e.preventDefault();
		$(this).parent().parent().slideUp();
	});
	
	//Finding short messages
	setTimeout('hideShortMsg()',3000);
});

//Callback for hiding short messages
function hideShortMsg(){
	$('.msg_short').slideUp(1500);
}

//Utility functions
function cb(){
	return new Date().getTime();
}
