/************************************************
* Author: Hoyan Ngai
* Email: hoyan@ngai.com.au
* Date Written: 24th March, 2009
* Last Modified: 24th March, 2009
* Requires: jquery-1.3.2.min.js (or later)
************************************************/

function FadedHover(ElementToFade, FadedOpacity) {
    $(ElementToFade).fadeTo(1, FadedOpacity);
    $(ElementToFade).mouseover(function() {
        $(this).fadeTo('fast', 1.0)
    });
    $(ElementToFade).mouseout(function() {
        $(this).fadeTo('normal', FadedOpacity)
    });
}