﻿$(document).ready(function () {
    $('.hover').hover(function () {
        $(this).css('border', '1px solid #C06');
    }, function () {
        $(this).css('border', '1px solid #999');
    });
});
