$.fn.nice_show = function(){
	$(this).css({opacity: 0, marginTop: -80}).show();
	$(this).animate({opacity: 1, marginTop: -40}, 300);
};
$.fn.nice_hide = function(){
	$(this).animate({marginTop: 20, opacity: 0}, 300, function(){
		$(this).css({marginTop: 0}).hide();
	});
};
$(document).ready(function(){
	$(".message").nice_hide();
	if($.browser.opera)
	{
                $("#messages").css({display: "none"});
        }
	else if($.browser.msie)
	{
                $("#messages").css({display: "none"});
        }
	else
	{
        	$(".ref-item").hover(function(){
        		var id = $(this).attr('id').replace("open_", "");
        		$("#"+id).nice_show();
        		$("#"+id).load('ref.php?popis=1&id='+id.replace("message_", ""));
        	}, function(){
        		var id = $(this).attr('id').replace("open_", "");
        		$("#"+id).nice_hide();
        	});
        }
});