$(document).ready(function()

{
	$('.socials [title]').qtip({
      position: {
         corner: {
            target: 'rightTop',
            tooltip: 'leftBottom'
         }
      },
      style: {
		 name: 'dark',
		 'font-size': 13,
         padding: '12px',
		 background: '#FF7D7D',
		 color: '#fff',
         width: {
            max: 200,
            min: 0
         },
		 border: {
         width: 0,
         radius: 0,
         color: '#FF7D7D'
      			},
         tip: true
      }
   });
});

$(document).ready(function()

{
	$('.websites [title]').qtip({
      position: {
         corner: {
            target: 'leftTop',
            tooltip: 'rightBottom'
         }
      },
      style: {
		 name: 'dark',
		 'font-size': 13,
         padding: '12px',
		 background: '#FF7D7D',
		 color: '#fff',
         width: {
            max: 300,
            min: 0
         },
		 border: {
         width: 0,
         radius: 0,
         color: '#FF7D7D'
      			},
         tip: true
      }
   });
});

$(document).ready(function()

{
	$('.portret [title]').qtip({
      position: {
         corner: {
            target: 'bottomMiddle',
            tooltip: 'topMiddle'
         }
      },
      style: {
		 name: 'dark',
		 'font-size': 13,
         padding: '12px',
		 background: '#FF7D7D',
		 color: '#fff',
         width: {
            max: 400,
            min: 0
         },
		 border: {
         width: 0,
         radius: 0,
         color: '#FF7D7D'
      			},
         tip: true
      }
   });
});
