
	
////////////////////////////////////START DOC

//////////////Single post link tooltips

$('p > a, .content div > a').not('a.videoThumb').qtip({
style: {
      'font-size': 9,
      'letter-spacing': '.6px',
      'text-align': 'center',
      'font-weight': 'bolder',
      'line-height': '10px',
      'padding-top': '10px',
      'padding-right': '8px',
      'padding-bottom': '6px',
      'padding-left': '8px',
      background: '#F18924',
      color: '#fff',
      border: {
         width: 1,
         radius: 5,
         color: '#F18924'
      },
      width: 120,
      name: 'light',
        tip: { // Now an object instead of a string
         corner: 'bottomMiddle', // We declare our corner within the object using the corner sub-option
         color: '#F18924',
         size: {
            x: 20, // Be careful that the x and y values refer to coordinates on screen, not height or width.
            y : 10 // Depending on which corner your tooltip is at, x and y could mean either height or width!
         }
} },
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      },
         adjust: {
            y: -5
         }
   },

   show: {
      effect: {
         type: 'fade',
         length: 300
      }
   },

   hide: {
      effect: {
         type: 'fade',
         length: 300
      }
   }
 });

//////////////PROJECT PAGE tooltips

$('a.jwts_title_text').qtip({
	style: {
	      'font-size': 9,
	      'letter-spacing': '.6px',
	      'text-align': 'center',
	      'font-weight': 'bolder',
	      'line-height': '10px',
	      'padding-top': '10px',
	      'padding-right': '8px',
	      'padding-bottom': '6px',
	      'padding-left': '8px',
	      background: '#F18924',
	      color: '#fff',
	      border: {
	         width: 1,
	         radius: 5,
	         color: '#F18924'
	      },
	      width: 120,
	      name: 'light',
	        tip: { // Now an object instead of a string
	         corner: 'bottomMiddle', // We declare our corner within the object using the corner sub-option
	         color: '#F18924',
	         size: {
	            x: 20, // Be careful that the x and y values refer to coordinates on screen, not height or width.
	            y : 10 // Depending on which corner your tooltip is at, x and y could mean either height or width!
	         }
	} },
	   position: {
	      corner: {
	         target: 'topLeft',
	         tooltip: 'bottomLeft'
	      },
	         adjust: {
	            y: -5
	         }
	   },

	   show: {
	      effect: {
	         type: 'fade',
	         length: 300
	      }
	   },

	   hide: {
	      effect: {
	         type: 'fade',
	         length: 300
	      }
	   }
	 });

//////////////Index Thumbnails

$('img.thumbnail').qtip({
content: 'read more!',
style: {
      'font-size': 8,
      'letter-spacing': '1px',
      'text-align': 'center',
      'font-weight': 'bolder',
      'line-height': '9px',
      'padding-top': '3px',
      'padding-right': '0px',
      'padding-bottom': '1px',
      'padding-left': '0px',
      background: '#F18924',
      color: '#fff',
      border: {
         width: 2,
         radius:3,
         color: '#F18924'
      },
      width: 75,
      name: 'light',
        },
   position: {
      corner: {
         target: 'rightTop',
         tooltip: 'rightTop'
      },
         adjust: {
            y: 10,
	    x: -8
         }
   },

   show: {
      effect: {
         type: 'slide',
         length: 150
      }
   },

   hide: {
      effect: {
         type: 'slide',
         length: 300
      }
   }
 });



//////////////Images

$('img').not('img.thumbnail, img.videoThumb, li img, img.aligncenter, img.logoPic, img.morePic, div.static-header img, div img').qtip({
style: {
      'font-size': 9,
      'letter-spacing': '.4px',
      'text-align': 'center',
      'font-weight': 'bolder',
      'line-height': '9px',
      'padding-top': '10px',
      'padding-right': '5px',
      'padding-bottom': '7px',
      'padding-left': '5px',
      background: '#F18924',
      color: '#fff',
      border: {
         width: 2,
         radius:3,
         color: '#F18924'
      },
      width: 100,
      name: 'light',
        },
   position: {
      corner: {
         target: 'leftTop',
         tooltip: 'leftTop'
      },
         adjust: {
            y: 20,
	    x: 8
         }
   },

   show: {
      effect: {
         type: 'slide',
         length: 150
      }
   },

   hide: {
      effect: {
         type: 'slide',
         length: 300
      }
   }
 });


$('img.videoThumb').qtip({
	content: 'PLAY',
style: {
	      'font-size': 8,
	      'letter-spacing': '1px',
	      'text-align': 'center',
	      'font-weight': 'bolder',
	      'line-height': '9px',
	      'padding-top': '-3px',
	      'padding-right': '0px',
	      'padding-bottom': '2px',
	      'padding-left': '0px',
	      background: '#F18924',
	      color: '#fff',
	      border: {
	         width: 1,
	         radius:2,
	         color: '#F18924'
	      },
	      width: 50,
	      height: 10,
	      name: 'light',
	        },
	   position: {
	      corner: {
	            target: 'rightTop',
	            tooltip: 'rightTop'
	      },
	         adjust: {
	            y: 10,
		    x: -10
	         }
	   },

	   show: {
	      effect: {
	         type: 'slide',
	         length: 150
	      }
	   },

	   hide: {
	      effect: {
	         type: 'slide',
	         length: 300
	      }
	   }
	 });




//////////////REMOVE tooltips

$('h6.archive-header a, img.aligncenter, a.logoHead, div.portfolio-image-wrapper a, div.static-header img, div img').qtip({
content: '',
style: {
      background: 'none',
      border: 'none',
      name: 'light',
      visibility: 'hidden',
      tip: false } });


//////////////////////////////////// END DOC

