﻿$(document).ready(	function() {// Open links with rel="external" in new window/tab	  $('a[rel="external"]').click(function() { window.open($(this).attr('href')); return false; });          	// Control attributes of Tooltip	  $("[title]").mbTooltip({ // also $([domElement]).mbTooltip  >>  in this case only children element are involved      opacity : .87,       //opacity      wait:1200,           //before show      cssClass:"default",  // default = default      timePerWord:80,      //time to show in milliseconds per word      hasArrow:false,			// if you whant a little arrow on the corner      hasShadow:true,      imgPath:"images/",      ancor:"mouse", //"parent"  you can ancor the tooltip to the mouse position or at the bottom of the element      shadowColor:"black", //the color of the shadow      mb_fade:500 //the time to fade-in    });	      }  );