
$(document).ready(function() {

	$('.tm-itemSelected').append('<div></div>');

    $('.tm-item a').hover(
        function () {
            $(this).parent().append('<div></div>');
        },

        function () {
            $(this).parent().find('div').remove();
        }
    );

    $('.lmi-mid a').hover(
        function () {
            $(this).parent().addClass('lmi-midHovered').removeClass('lmi-mid');
        },

        function () {
            $(this).parent().addClass('lmi-mid').removeClass('lmi-midHovered');
        }
    );

});
