//<!--

function SetHovers()
{
    $("#NewsHolder .newsItem").mouseover(function()
    {
        $(this).addClass("hover");
    });
    
    $("#NewsHolder .newsItem").mouseout(function()
    {
        $(this).removeClass("hover");
    });
    
    $("#NewsHolder .newsItem").click(function()
    {
        var elementToGet = "#" + $(this).attr("id") + " .colourLink";
        if ($(elementToGet).length > 0)
        {
            window.location = "http://" + window.location.hostname + $(elementToGet).attr("href");
        }
    });
}

//-->
