$(document).ready(function() 
{   
   
   $('.tooltips').each(function()
   { 
      $(this).qtip(
      {
         content: $(this).attr('tooltips'),
         position: {
            corner: {
               target: 'topRight',               
               tooltip: 'leftTop'
            }
         },
         hide: {
            fixed: true
         },
         style: {
            width: 320,
            //background: '#A2D959',
      	    //color: 'black',
      	    //textAlign: 'center',
	    //border: {
	    //     width: 7,
	    //     radius: 5,
	    //    color: '#A2D959'
	    //},
            tip: true, 
            name: 'dark'
         }
      });
   });
});
function addFriend(user_id){
	tb_show(getPhrase('profile.add_to_friends'), $.ajaxBox('tooltips.addfriend', 'user_id='+user_id+'&width=420&height=250'));
}
