$(document).ready(function(){
		
		$('a.email').qtip({
   		content: 'adam.debreczeni@gmail.com',
  		style: { 
      		name: 'light' // Inherit from preset style
  		 },
  		 position: {
      		corner: {
        	target: 'topMiddle',
        	 tooltip: 'bottomMiddle'
      		}
  		},
  		})
		
		$('a.im').qtip({
   		content: 'adamdeb@mac.com',
  		style: { 
      		name: 'light' // Inherit from preset style
  		 },
  		 position: {
      		corner: {
        	target: 'topMiddle',
        	 tooltip: 'bottomMiddle'
      		}
  		}
  		})
		
		$('a.twitter').qtip({
   		 content: '@heyadam',
  		style: { 
      		name: 'light' // Inherit from preset style
  		 },
  		 position: {
      		corner: {
        	target: 'topMiddle',
        	 tooltip: 'bottomMiddle'
      		}
  		}
  		})
  		$('a.blog').qtip({
   		 content: 'http://heyad.am/blog',
  		style: { 
      		name: 'light' // Inherit from preset style
  		 },
  		 position: {
      		corner: {
        	target: 'topMiddle',
        	 tooltip: 'bottomMiddle'
      		}
  		}
  		})
 });
