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