$(document).ready(function() {

        $('.index-record').mouseover(function() {			
			$(this).children('#edit').show();
        });

        $('.index-record').mouseout(function() {			
            $(this).children('#edit').hide();
        });

    });
	