function hoverIN()
{
    $(this).css("background", "#e8cfd0");
    $(this).parent().css("border-top", "2px solid #9b2d30");
    $(this).find("a").css("color", "#9b2d30");
    var id = $(this).attr("id");
    id = "#"+id+'Text';
    if ($.browser.msie && parseInt($.browser.version)==6) $(id).show();
    $(id).fadeIn("fast");
}

function hoverOUT()
{
    $(this).css("background", "#fffbd9");
    $(this).parent().css("border-top", "2px solid #4c4c4c");
    $(this).find("a").css("color", "#4c4c4c");
    var id = $(this).attr("id");
    id = "#"+id+'Text';
    $(id).stop(true, true);
    if ($.browser.msie && parseInt($.browser.version)==6) $(id).hide();
	else $(id).fadeOut("fast");
}

function linkClick()
{
    var addr = $(this).find("a").attr("href");

    window.location = addr;        
}

$(document).ready(function(){
    $(".listLink").hover(hoverIN, hoverOUT);
    $(".listLink").click(linkClick);
 });
