#ABOUT#
Adds a new page in admin to define extra services to offer customers. This could be Giftwrapping, insurances or anything else really.
An order total module adds the services to the order. NOTE: Nothing will show up, if this module isn't installed.
A checkout_shipping hook and a shopping_cart content module gives the customer the possibility of choosing to add any of the extra services to the order.

Each extra service can be set up as either a total, a pr. product or configurable by the customer.
Fx: service A costs $3 and is a total. Service B costs $2 and is a configurable. Service C costs $1 and is pr. product.
If a customer adds 10 items to their cart, service A would cost $3 for them too add to the order. 
For service B, they would be able to enter a number between 1 and 10 (as they have 10 items in their cart), and the price would be that number times $2.
Service C would cost $10, as the price pr. product i $1 and there are 10 products.

#INSTALL#
Run this SQL in phpMyAdmin or similar: 

CREATE TABLE extra_services (`extra_service_id` INT(11) NOT NULL AUTO_INCREMENT , `language_id` INT(11) NOT NULL , `extra_service_name` VARCHAR(255) NULL DEFAULT NULL , `extra_service_text` TEXT NULL DEFAULT NULL , `extra_service_price` FLOAT(12,4) NULL DEFAULT NULL , `extra_service_individual` TINYINT(1) NULL DEFAULT NULL , `extra_service_sort` INT(11) NULL DEFAULT NULL , PRIMARY KEY (`extra_service_id`, `language_id`))

Upload all files except "update.php" to corresponding directories on your server - make translations of the langugage-files if necessary.
Go to Admin->Catalog->Extra Services to set up services
Go to Admin->Modules->Order Total->Install Module, choose "Extra Services" and click "Install Module". Configure as needed
Optionally, go to Admin->Modules->Content->Install Module, choose "Extra Services" and click "Install Module" to have it shown on the shopping cart page as well. Configure as needed.

#UNINSTALL#
Make sure to uninstall the two modules: Order Total->Extra Services and Content->Extra Services.
Delete all the files from this package from your server.
Run this SQL:
DROP TABLE extra_services