﻿$(document).ready(function() {

    $('.headerStatement .tenantSelect').mouseover(function() {

        $(this).addClass('hover');

    }).mouseout(function() {

        $(this).removeClass('hover');

    });

});