$(document).ready(function(){
var contents = new Array();
  contents['tip-space'] = 'Web space is the amount of space that your account is allocated. <i>Note: 1GB = 1,024MB</i>';
  contents['tip-transfer'] = 'Monthly transfer is the amount of data that you can transfer too and from your account every month. <i>Note: 1GB = 1,024MB</i>';
  contents['tip-pricing'] = 'The further you pay in advance, the bigger discount you will receive.';
  contents['tip-addon'] = 'With add-on domains, you can point multiple domains to your current account, without having to create another hosting account.';
  contents['tip-parked'] = 'With parked domains, you are able to point a domain at our server, but you cannot create a website for this. To create a website, you will need to have add-on domains.';
  contents['tip-ftp'] = 'FTP is the way you are recommended to transfer files too and from your server. These files can then be accessed from the web.';
  contents['tip-mail'] = 'Mail accounts are standard e-mail accounts that you can create, e.g. mail@yourdomain.com.';
  contents['tip-subdomain'] = 'Sub domains allow you to create a website such as: blog.yourdomain.com';
  contents['tip-sql'] = 'An SQL account is used to store dynamic data. An SQL is account is needed for something like WordPress or an E-Commerce website.';
  contents['tip-websitebuilder'] = 'With our website builder, you are able to create websites in minutes with no experience in web design. We have hundreds of great templates for you to choose from.';
  contents['tip-installatron'] = 'Our servers come with an application that allows you to automatically install scripts on your account with a few clicks of the mouse. Click the question mark to view more details.';
  contents['tip-backup'] = 'We make on-site backups every day, and take a weekly backup off-site.';
  contents['tip-cpanel'] = 'cPanel is the industry leading control panel to manage every aspect of your web hosting account.';
  contents['tip-whm'] = '<strong>W</strong>eb <strong>H</strong>osting <strong>M</strong>anager will allow you to control all of the accounts that you create for your clients.';
  contents['tip-accounts'] = 'This is the number of accounts that you can create whilst using this reseller package.';
  contents['tip-ram'] = 'This is the amount of dedicated memory that is allocated to your server.';
  contents['tip-burst'] = 'This is the amount of memory you can use if it is available.';
  contents['tip-cpu'] = 'This is the number of CPU\'s that are available.';
  contents['tip-dedip'] = 'A dedicated IP gives you your own IP address which is assigned to your account or server only.';
  contents['tip-root'] = 'Root access means you have complete control over your server.';
  contents['tip-virtpanel'] = 'SolusVM allows you to manage your VPS, you can start, stop, reboot, reinstall and much more through this simple and easy to use interface.';
  contents['tip-osreinstall'] = 'We have over 5 Linux distributions for you to choose from which you can reinstall at any time.';
  contents['tip-activation'] = 'As soon as your first invoice is paid for, your account will be set up!';
  contents['tip-cputype'] = 'This is the processor that is installed in your server.';
  contents['tip-cpucores'] = 'This is the number of cores your server will have.';
  contents['tip-diskqnt'] = 'This is the number of hard disks that are installed in your server.';
  contents['tip-disksize'] = 'This is the size of the hard disks that are installed in your server.';
  contents['tip-disktype'] = 'This is the type of hard disk that is installed in your server.';
  contents['tip-diskswap'] = 'Hot swap allows your to quickly switch over hard disks so that your server can continue to run, even with a broken disk.';
  contents['tip-diskraid'] = '<strong>R</strong>edundant <strong>a</strong>rray of <strong>i</strong>nexpensive <strong>d</strong>isks allows you to use multiple hard disks in different ways.';
  contents['tip-diskcontroller'] = 'If your server uses hardware raid, this is the model number of the controller.';
  contents['tip-dedbackup'] = 'All our dedicated servers come with 100GB onsite backup.';
  contents['tip-networkuptime'] = 'If our network goes down for longer than our guarentee, you save money on your next months bill.';
  contents['tip-rebootserver'] = 'If enabled, you will be able to reboot your machine through our web control panel.';
  contents['tip-transferstats'] = 'If enabled, you will be able to view your transfer statistics through our web control panel.';
  contents['tip-dnsmanagment'] = 'If enabled, you will be able to manage your DNS through our web conrol panel.';
  contents['tip-reversedns'] = 'If enabled, you will be able to manage your reverse DNS for IP addresses.';
  contents['tip-servermonitor'] = 'If enabled, you will be able to monitor your server through our web control panel.';
  contents['tip-privatenameservers'] = 'Private nameservers allow you to have ns1 & ns2.yourdomain.com which hides us from your clients.';
  contents['tip-anonhostname'] = 'When sending mail and looking up our servers, your clients will not be able to find out that you are reselling our services!';

$(".tt").each( function(i) {
   $(this).qtip({
   style: { name: 'dark' },
   position: { corner: { target: 'rightMiddle', tooltip: 'leftMiddle' }, adjust: { x: 13, y: 0 } },
   content: contents[$(this).attr('id')]
   });
});
						   });