function cx_tooltipp(str)
  {
  $(str+' *[title]').qtip(
    {
	style: {
      width: 200,
      padding: 5,
      background: '#ACCC3D',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 5,
         radius: 5,
         color: '#ACCC3D'
      },
      tip: 'bottomLeft',
      name: 'dark'
	  },
	position:
	  {
      corner:
		{
        target: 'topRight',
        tooltip: 'bottomLeft'
        }
	  }
	});
  }


$(function()
  {
  cx_tooltipp('.cx-raster-zwei-2');
  });
