YAHOO.hashHighlight = function(){
	var $D = YAHOO.util.Dom;
	var $E = YAHOO.util.Event;

 	return {
        init:function(){
            if (location.hash > '') {
                var el = document.getElementsByName(location.hash.substring(1));
                if (el.length > 0) {
                    el = el[0];
                    YAHOO.util.Dom.addClass(el, 'target');
                }
            }
        }
    };
}();

YAHOO.util.Event.addListener(window, "load", YAHOO.hashHighlight.init);

