﻿//OPEN URLS IN NEW WINDOW
function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

//LOADS TOOLTIPS ON PORTFOLIO
$(document).ready(function()
{
   $('.ttip[alt]').qtip({    
    style: { width: 296, padding: 10, background: '#c6eb6b', color: 'black', textAlign: 'left', border: {width: 6, color: '#669933'}, tip: 'bottomMiddle', name: 'green', classes: {content: 'projecttip'} },  
    position: { corner: { target: 'topMiddle', tooltip: 'bottomMiddle' } },
    effect: {type: 'fade'}

     });
});
