// JavaScript Document
// when the DOM is ready
$.fn.qtip.styles.mystyle = { // Last part is the name of the style
   background: '#333',
   color: '#CCC',
   textAlign: 'left',
   border: {
      width: 5,
      radius: 5,
      color: '#FFF'
   },
   name: 'dark' // Inherit the rest of the attributes from the preset dark style
}

$(".nike, .g13, .flip, .carrot, .kk, .wakefield").qtip({
   content: 'Apparel Graphics',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});

$(".distriqt, .harley, .mayday").qtip({
   content: 'Identity and Branding',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});
$(".Shawn, .panacea, .tame, .kurious").qtip({
   content: 'Album Art, Identity and Branding',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});

$(".royal, .remix, .pilot, .proof7, .hennessey").qtip({
   content: 'Illustrative Design',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});
$(".time, .stunt, ").qtip({
   content: 'Web design',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});

$(".jeff ").qtip({
   content: 'Music Video',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});
$(".right-button ").qtip({
   content: 'Music Video',
   style: 'mystyle' ,
   position: {
      corner: {
         target: 'bottomLeft',
         tooltip: 'topLeft'
      }
   },
	 
});


