// JavaScript Document
<!-- ###### PRINT CONTROL ##### -->
	function roll(img_name, img_src)
	   {
	   document[img_name].src = '/siteImages/' + img_src;
	   }
<!-- ###### PRINT CONTROL ##### -->	
        
<!-- ###### STICKY NOTE CONTROL ##### -->
		var ns = (navigator.userAgent.indexOf("Netscape") != -1);
		var d = document;
		var loadImage;
		
		function winWidth() 
			{
				return ns ? innerWidth : d.body.scrollWidth;
			}
			
		function winHeight()
			{
				return ns ? innerHeight : d.body.scrollHeight;
			}
			
		function displayImage()
			{
					setTimeout("centerImage()", 40);
			}
			
		function hideIt()
			{
				getLayer("stickyNote").style.visibility = "hidden";
			}
			
		function getLayer(id)
			{
				var el = d.getElementById?d.getElementById(id):d.all?d.all[id]:d.layers[id];
				if(ns) el.style = el;
				return d.getElementById(id)
			}
		
		var thePic;
		var TargetX;
		var TargetY;
		var currX, currY;
		var theTimer = null;
		
		function centerImage()
			{
				var str='<img src="' + loadImage.src + '">';
				thePic = getLayer("stickyNote");
				if(document.layers)
				{
					thePic.document.write(str);
					thePic.document.close();
				}
				else
					thePic.innerHTML=str;
			
				TargetX = (winWidth() - loadImage.width + 580)/2;
				TargetY = 750;
				currX = TargetX;
				currY = -100 - loadImage.height;
				
				thePic.style.left = currX+'px';
				thePic.style.top =  currY+'px';
				if(theTimer == null)
					{
						theTimer = setInterval("ani()", 100);
					}
			
				thePic.style.visibility = "visible";
			}
		
		function ani()
			{
				TargetX = (winWidth() - loadImage.width + 580)/2;
				TargetY = 730;
				thePic.style.left = currX+'px';
				thePic.style.top =  currY+'px';
				currY += (TargetY - currY)/16;
				currX += (TargetX - currX)/16;
			}
		
		function popImage(theUrl)
			{
				getLayer("stickyNote").style.visibility = "hidden";
				loadImage = new Image();
				loadImage.onload=displayImage;
				loadImage.src=theUrl;
				return false;
			}
		
		var theImages = new Array("http://gdcbk.sebss.com/siteImages/sticky-note.gif");
		var theIndex = 0;
		
		function slide()
			{
				popImage(theImages[theIndex]);
			}				
		
		function slideImage()
			{
				setTimeout("slide()", 3000);
			}
<!-- ###### STICKY NOTE CONTROL ##### -->