

// onclick select action ------------------------------------------------------------>
/*
$(document).ready(function() {

	$(".ref_image_small").click(function() {


		return;
        if ($(this).hasClass("directory") || $(this).hasClass("file"))
        {
            var par	= $(this).parent();

            $(par).children('tr.hover').each( function() {
                $(this).removeClass('hover');
            });

            if ($(this).children('td').children("input[type='checkbox']").attr('checked') ) {
                    $(this).children('td').children("input[type='checkbox']").attr('checked', false);
                    $(this).removeClass('checked');
            }
            else {
                    $(this).children('td').children("input[type='checkbox']").attr('checked', 'checked');
                    $(this).addClass('checked');
            }
        }
	});
	

	
	
});
*/
