$(document).ready(function(){
	$("<div id='notification'>Looking for the free YUDU publishing site and YUDU library? <a href='http://free.yudu.com' target='_blank'>This has now moved to free.yudu.com</a></div>").css({
	position:"fixed",
	top:"0px",
	left:"0px",
	height:"25px",
	width:"100%",
	backgroundColor:"#ffff88",
	color:"black",
	padding:"15px, 0px, 5px, 0px",
	fontWeight:"bold",
	textAlign:"center",
	'z-index':12,
	display:"none", //<-- notice this new value
	opacity:"0.9"
	})
	.appendTo("body");
	$("#notification").slideDown("slow");
	
	var timeout = setTimeout("$('#notification').slideUp('slow');",6000);
});
