// JavaScript Document
$(document).ready(function(){
	//first slide down and blink the alert box
	$("#divpopup").animate({ top:"200" }, 5000 ).animate({ top:"200" }, 1000 ).fadeOut("slow");
	$("#closepop").mouseover(function(){ $("#divpopup").stop(); });
	$("#closepop").click(function(){ $("#divpopup").remove(); });
});