﻿
$(document).ready(function () {
    $('.event').mouseover(function () {
        $(this).find('.smallEvent').css('border-color', '#FF0000');
        $(this).find('.eventTitle a.topLink').css('text-decoration', 'underline');
    });
    $('.event').mouseout(function () {
        $(this).find('.smallEvent').css('border-color', '');
        $(this).find('.eventTitle a.topLink').css('text-decoration', '');
    });
});

