// Copyright (c) 2008 by Devise LLC.  www.devise.com

function doHighlight()
{
	var s = '' + window.location
	var a = s.split('#')
	if (a.length == 2)
	{
		var target = $(a[1])
		target = target.immediateDescendants()[0]
		if (target == null) return
		
		new Effect.Highlight(target,{startcolor:'#DDCB12',duration:2.5})
	}		
}

Event.observe(window, 'load', doHighlight)