/**
 * this is our "controller inside content table"
 */
inherites = function(source, destination) {
	if (typeof destination == 'undefined') destination = this
	for (var property in source) {
  		if (typeof source[property] == 'function') continue //destination[property] = bind(source[property], destination)
		else destination[property] = source[property]
	}
	return destination
}

