Event.observe(window, 'load', function() {
	Event.observe('photo', 'mouseover', ShowProfile, false);
	Event.observe('textbox', 'mouseout', HideProfile, false);
});

function ShowProfile(){
	$('textbox').show();
}
function HideProfile(){
	$('textbox').hide();
}