// Website Stickies
// (c) 2008 Antone Roundy
// http://AntoneRoundy.com/
// You may freely use this code as long as you keep this copyright notice intact

var stickylist=new Array();
function ShowAllStickies() {
	for (i=0;i<stickylist.length;i++)
		document.getElementById(stickylist[i]).style.display='block';
}

function CloseSticky(s) {
	document.getElementById(s).style.display='none';
}
