$(document).ready(function()
{
  items = [{
             id: '#about_us_map a[href].tip1',
             content: '<span class="map_headers">S 1 Technologies</span><br/>5245 Bell Center<br />Chino, CA 91710<br />United States of America'
           },
           {
             id: '#about_us_map a[href].tip2',
             content: '<span class="map_headers">Gilbert &amp; Jones Company, Inc.</span><br/>35 Peter Center<br />New Britian, CT 06051<br />United States of America'
           },
           {
             id: '#about_us_map a[href].tip3',
             content: '<span class="map_headers">Atotech Canada Ltd</span><br/>1180 Corporate Drive<br />Burlington, ON L7L 5R6<br />Canada'
           },
           {
             id: '#about_us_map a[href].tip4',
             content: '<span class="map_headers">Citra Do Brasil Comercio<br />International Ltd</span><br/>Rua Jose De Andrade 330 CEP<br />Cotia, Brazil 06714-200'
           },
           {
             id: '#about_us_map a[href].tip5',
             content: '<span class="map_headers">Univertical International</span><br/>No. 567 Jin Feng Road<br />Suzhou New District, China'
           },
		   {
             id: '#about_us_map a[href].tip29',
             content: '<span class="map_headers">Tech-Knowledge</span><br/>7 Bruia St.<br />Tel-Aviv, Israel 67443'
           },
		   {
             id: '#about_us_map a[href].tip30',
             content: '<span class="map_headers">Keeshing Industrial Products Ltd.</span><br/>3/F Keeshing Centre<br />74-76 Kimberly Road<br />Tsimshatsui Kowloon Hong Kong'
           },
		   {
             id: '#about_us_map a[href].tip31',
             content: '<span class="map_headers">Keeshing Industrial Products Ltd.</span><br/>Flat 5 11/F No 57<br />Sec 1 Chong Quing South Road<br />Taipei, Taiwan'
           },
		   {
             id: '#about_us_map a[href].tip32',
             content: '<span class="map_headers">ShinPoong Metal Co. Ltd.</span><br/>#233-408, Seoknam-Dong, Seo-Ku<br />Incheon, Korea'
           },
		   ];
           
  for(i in items) {
    $(items[i].id).qtip({content: items[i].content});
  }
});
