function announcement(){
	$("#content").prepend("<div id='announcement' align='center' style='position:absolute;width:500px;height:230px;padding:5px;background-color:#acd1fb;color:black;'><h3>Sample Bulletin Text</h3><textarea cols='61' rows='8' readonly='readonly'>UnveilinGLORY is continuing a grass-roots movement to raise up believers to fast and pray monthly primarily for the holiness of President Barack Obama (as well as for wisdom, for his cabinet, our nation, etc.). It is our intent to lift him up 24/7/365/4 or 8 years. If you are interested in committing to this and joining thousands of others in this movement, go to www.fastforthepresident.com and check us out! You will see how many are fasting and praying each specific day as well as how many have joined the movement!</textarea> <br><p align='center'><button onclick='hidemsg();'>Ok</button></p></div>");
	$("#announcement textarea").focus().select();
}

function embed(){
	$("#content").prepend("<div id='embed' align='center' style='position:absolute;width:500px;height:290px;padding:5px;background-color:#acd1fb;color:black;'><b>Presidential Fasting Widget</b><br><iframe src=\"http://www.fastforthepresident.com/fastingtoday.php\" width='220px' height='170px' frameborder='0'></iframe><br>Simply paste this code into your page:<br><textarea readonly='readonly' cols='50' rows='2'><iframe src=\"http://www.fastforthepresident.com/fastingtoday.php\" width='220px' height='170px' frameborder='0'><iframe></textarea> <br><p align='center' style='font-size:15px;'><button onclick='hidemsg();'>Ok</button></p></div>");
	$("#embed textarea").focus().select();
}

function hidemsg(){
	$("#announcement").hide();
	$("#embed").hide();
}