	
$(document).ready(function(){
	
	$('#layoutmsg').each(function() {
		$(this).slideDown('slow');
		$(this).animate({dummy:1}, 4000);
		$(this).slideUp('slow');
	});
});
