function showTooltip(x, y, contents) {

$('<div id="tooltip">' + contents + '</div>').css( {
    position: 'absolute',
    display: 'none',
    top: y + 5,
    left: x + 5,
    border: '1px solid #5395bc',
    padding: '5px',
    'background-color': '#eaf0f3',
    opacity: 0.80
}).appendTo("body").fadeIn(200);

}

$(document).ready($(function() {

$('#page').equalHeights();

}));