	function spawnBubble()
	{
		if($("anchor_bubble"))
		{
			var anchorPos = findPos($("anchor_bubble"));

			var myDiv = document.createElement("div");
			myDiv.id="bubble_ad";
			myDiv.innerHTML='<a href="http://www.downhomelife.com/q-and-a.php"><img src="images/ads/bubble2.gif" border="0"</a>';
			myDiv.style.opacity=1;
			//myDiv.src="images/ads/bubble.gif";
			myDiv.style.position="absolute";
			myDiv.style.left = (anchorPos[0]+163)+"px";

			myDiv.style.top = (anchorPos[1]-136)+"px";

			
			document.body.appendChild(myDiv);

			// setTimeout uses miliseconds. 8000 = 8 seconds.
			setTimeout("fadeBubble()",8000);
		}
	}

	function fadeBubble()
	{
		if($("bubble_ad").style.opacity>0)
		{
			// Reduce opacity by 1/100th every 1/100th of a second; total fade-out time, 1 second.
			$("bubble_ad").style.opacity-=0.01;
			setTimeout("fadeBubble()",10);
		}
		else
		{
			document.body.removeChild($("bubble_ad"));
		}
	}