/**
 * User: Thomas
 * Date: 19.01.2011
 * Time: 20:43:52
 * Copyright by Global Multimedai AG, Switzerland
 */

$(document).ready(function()
{
//  $('#search_tip').each(function()
//  {
//    $(this).qtip({
//      content: search_note,
//      style: 'light'
//    });
//  });
  $('#search_tip').qtip({
    content: {
      text: search_note
    },
    style: 'light'
  });
  $('.rme-info').qtip({
    content: {
      text: rememberMeInfo
    },
    position: {
      corner: {
        target: 'center',
        tooltip: 'topRight'
      }
    },
//    position: {
//      target: $(document.body),
//      corner: {
//        target: 'center',
//        tooltip: 'center'
//      }
//    },
//    hide: {
//      when: 'inactive',
//      delay: 2000
//    },
    style: {
      width: 320,
      name: 'light'
    }
  });
  $('.bp-info').qtip({
    content: {
      text: bonusInfo
    },
    position: {
      corner: {
        target: 'center',
        tooltip: 'topRight'
      }
    },
    style: {
      width: 320,
      name: 'light'
    }
  });
  $('.ref-info').qtip({
    content: {
      text: referralInfo
    },
    position: {
      corner: {
        target: 'center',
        tooltip: 'topRight'
      }
    },
    style: {
      width: 320,
      name: 'light'
    }
  });
});

