function main()
	Is3D( FALSE );

	AddBackground( "MotorShop\\back" );

	-- Displayable objects
	AddSprite( OMotorShopTicketEstab,  	 86, 260,  64,  32, "MotorShop\\obj_EnvTicket.dds", VISIBLE ); -- EnvTicket
	AddSprite( OMotorShopRecipientsEstab, 	273, 144,  32,  16, "MotorShop\\obj_recipients.dds", VISIBLE ); -- intRecip
	AddSprite( OMotorShopToolEstab, 	474, 253,  32,  16, "MotorShop\\obj_tool.dds", VISIBLE ); -- intTool
	
	-- Hotspot
	AddSprite( HMotorShopComputer,		 96, 110,  82,  70, nil, ACTIVE, 0, 0, MotorShopComputer ); 
	AddSprite( HMotorShopTicketEstab,	 96, 270,  39,  16, nil, ACTIVE, 0, 0, MotorShopUnderCounter );
	AddSprite( HMotorShopToolEstab, 	473, 251,  32,  19, nil, ACTIVE, 0, 0, MotorShopTool );
	AddSprite( HMotorShopReceiptEstab, 	272, 145,  36,  11, nil, ACTIVE, 0, 0, MotorShopReceipt );

end