/*
--------------------------------------------------------------------
	W I D G E T S // Handle mouseover on profile column in comments
--------------------------------------------------------------------
*/
// Legacy pre-whitealbum handler
function initWidgets() {
	widgets = $$(".forumPost .widget li a");
	widgets.each(function(w) {
		w.onmouseover = function () {
			w.firstChild.style.display = 'block';	
		};
		w.onmouseout = function () {
			w.firstChild.style.display = 'none';	
		};
	});
}
Event.observe(window, 'load', initWidgets);