function SetHovers()
{
    $(".hoverItem").mouseover(function()
    {
        $(this).addClass("hover");
    });
    
    $(".hoverItem").mouseout(function()
    {
        $(this).removeClass("hover");
    });
    
    
    $(".linkItem").mouseover(function()
    {
        $(this).addClass("hover");
    });
    
    $(".linkItem").mouseout(function()
    {
        $(this).removeClass("hover");
    });
    
    $(".linkItem").click(function()
    {
        var elementToGet = "#" + $(this).attr("id") + " .link";
        if ($(elementToGet).length > 0)
        {
            window.location = "http://" + window.location.hostname + $(elementToGet).attr("href");
        }
    });    
}




