function add_hint_event()
{
	$('#happy_hint').css('display','none');
}

function on_happy_over(e)
{
	$('#happy_hint .small_avatar').attr("src", this.id);
	$('#happy_hint a').attr("href", '/messages/privat/' + this.rel);
	$('#happy_hint a').attr("onclick", 'window.open("/messages/privat/'+this.rel+'","_blank","width=640,height=430,top=400,left=400");return false;');
	$('#happy_hint').css('left',$(this).offset().left + 15);
	$('#happy_hint').css('top',$(this).offset().top - 42);
	$('#happy_hint').css('display','block');
}

function on_happy_out(e)
{
	$('#happy_hint').css('display','none');
}

function on_happy_hint_mouse_over(e)
{
	$('#happy_hint').css('display','block');
}

function on_happy_hint_mouse_out(e)
{
	$('#happy_hint').css('display','none');
}


$(document).ready(function(){
	if($('#happy a')) $('#happy a').mouseover(on_happy_over);
	if($('#happy a')) $('#happy a').mouseout(on_happy_out);
	if($('#happy_hint')) $('#happy_hint').mouseover(on_happy_hint_mouse_over);
	if($('#happy_hint')) $('#happy_hint').mouseout(on_happy_hint_mouse_out);
	});

//$(window).load(add_hint_event);