$(document).ready(function(){
  $.fn.qtip.defaults.position.corner.target = 'bottomMiddle';
  $.fn.qtip.defaults.position.corner.tooltip = 'topMiddle';
  $.fn.qtip.defaults.position.adjust.y = 1;
  var $showdelay = 700;
  
  $.fn.qtip.styles.marl = {
    width: 200,
    background: '#333333',
    color: '#FFFFFF',
    textAlign: 'center',
    border: {
       width: 7,
       radius: 5,
       color: '#333333'
    },
    name: 'dark' // Inherit the rest of the attributes from the preset dark style
  }
  $('#tabCompanyProfile').qtip({
    content: 'Read about Marl and our commitments to quality of product and service.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabLedLighting').qtip({
    content: 'A full range of energy-saving lighting solutions from bright white illumination to colourful and creative architectural lighting.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabIndustrial').qtip({
    content: 'Packaged LED indication: PCB Mounting LEDs, Bulb Replacements, Panel Lamps and Professional LED Indicators.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabOptosource').qtip({
    content: 'Distribution of LED products from Citizen Electronics, Lighting Science and other carefully chosen manufacturers.  Complete solutions as well as components that include: Discrete 3mm-5mm and SMD LEDs; High Power LEDs and Light Engines; and the drivers, power supplies and accessories that complement them.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabTransport').qtip({
    content: 'LED Lighting, Indication and Signalling solutions designed for applications in transport.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabAerospaceDefence').qtip({
    content: 'LED products designed for the exacting needs of the Aerospace and Defence sectors, with NATO stock codes.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#tabLibrary').qtip({
    content: 'Technical information and bulletins, datasheets and part number cross-reference guides for distributors.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#btnContact').qtip({
    content: 'Contact Marl via online form, email, fax, direct telephone numbers, or directions to our headquarters.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#btnShortform').qtip({
    content: 'Download our printable shortform product catalogue in PDF format. Adobe Reader required.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#btnSearch').qtip({
    content: 'Search the full site (all sectors) to help locate what you are looking for.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
  $('#btnDistributors').qtip({
    content: 'Find a distributor in your country from our worldwide list.', style: { name: 'marl' }, show: { delay: $showdelay }
  })
});	