﻿function pageLoad(sender, args) {
    $('#potentia').hover(function () {
        $(this).children(".description").fadeIn(150);
    });
    $('#potentia').mouseout(function () {
        $(this).children(".description").fadeOut(150);
    });
}