function update_movement()
{ 
	scentedad = document.getElementById('scentedad').style
	//oldtop = parseInt(scentedad.top.substring(0, scentedad.top.length-2))
	oldtop = parseInt(scentedad.top)
	if (oldtop < 0)
	{
		newtop = oldtop + 3
		if (newtop > 0)
			newtop = 0
		scentedad.top = newtop
		setTimeout("update_movement()", 20);
	}
}

function show_scentedad()
{
	return;
	scentedad = document.createElement('div');
	scentedad.setAttribute ('id' , 'scentedad')
	document.getElementsByTagName('body')[0].appendChild(scentedad)
	scentedad = eval("document.getElementById('scentedad').style")
	scentedad.position = 'absolute'
	scentedad.top = -75
	scentedad.right = 25
	scentedad.width = 150
	document.getElementById('scentedad').innerHTML = '<a href="http://'+'scentedcandlesandcandleholders'+'.com/"><img src="site_graphics/scentedad.gif" border="0"></a>'
	setTimeout("update_movement()", 750);
}
