﻿$(document).ready(function() {
    //add hover over for home page "Ads"
    var ads = $(".PanelContent").hover(function() { $(this).addClass("PanelContentHover") }, function() { $(this).removeClass("PanelContentHover") }); ;
    $(ads).click(function() { window.open($(this).parents("table:first").find("a:first").attr("href"),"_self") });


    // add hover over for article summaries (news)
    var articlesummaries = $(".article-summary").hover(function() { if ($(this).hasClass('small-article-link')) { } else { $(this).addClass('article-summary-hover') } }, function() { $(this).removeClass('article-summary-hover') });
    $(articlesummaries).click(function() { window.open($(this).find("a:first").attr('href'), '_self') })
});
