/**
 * General javascript routines for DF/Manager
 */
$(document).ready(function () {
	$('table.thumbs').TableGrid();
});

(function( $ ){
	$.fn.TableGrid = function() {

		return this.each(function() {
			$this = $(this);
			var name_width = Math.floor($this.parent().innerWidth() / $this.find('tr.products:first td').length) - 40;
			$this.find('span.name').css('width', name_width + 'px');
		});

	};
})( jQuery );
