﻿

function RunNewsSetup() {
    $(".newsItem").mouseover(function () {
        $(this).addClass("hover");
    });

    $(".newsItem").mouseout(function () {
        $(this).removeClass("hover");
    });

    $(".newsItem").click(function () {
        var location = $(this).find(".imageHolder a:first-child").attr("href");
        window.location = "http://" + window.location.hostname + location;
    });
}
