﻿$(document).ready(function() {
    //-----------------------------Select find button-----------------------------------
    $('.imgFind').mouseover(function() {
        $(this).css({
            'width': '24px',
            'height': '22px',
            'border': 'solid 1px #C0C0C0'

        });
    });
    $('.imgFind').mouseout(function() {
        $(this).css({
            'width': '26px',
            'height': '24px',
            'border': 'solid 0px #FFFFFF;'
        });
    });
    //-----------------------------END-----------------------------------
    //    $('.imgFind').click(function() {
    //        var height = $('.findLoop').css('height');
    //        alert(height);
    //    });
});
