this.tooltip = function(){
  /* CONFIG */
    xOffset = 10;
    yOffset = 20;
    // these 2 variable determine popup's distance from the cursor
    // you might want to adjust to get the right result
  /* END CONFIG */
  $("a.tooltip").hover(function(e){
    this.t = this.title;
    this.title = "";
    $("body").append("<p id='tooltip'>"+ this.t +"</p>");
    $("#tooltip")
      .css("top",(e.pageY - xOffset) + "px")
      .css("left",(e.pageX + yOffset) + "px")
      .fadeIn("fast");
    },
  function(){
    this.title = this.t;
    $("#tooltip").remove();
    });
  $("a.tooltip").mousemove(function(e){
    $("#tooltip")
      .css("top",(e.pageY - xOffset) + "px")
      .css("left",(e.pageX + yOffset) + "px");
  });
};



// starting the script on page load
$(document).ready(function(){
  tooltip();
});

$(document).ready(function() {

  // Slideshow homepage
  function megaHoverOver(){
    $(this).find(".sub").stop().fadeTo('fast', 0.95).show(); //Find sub and fade it in
  }
  function megaHoverOut(){
    $(this).find(".sub").stop().fadeTo('fast', 0, function() { //Fade to 0 opactiy
      $(this).hide();  //after fading, hide it
    });
  }
  var config = {sensitivity: 2,interval: 0,over: megaHoverOver,timeout: 200,out: megaHoverOut };
  $("ul#topnav li .sub").css({'opacity':'0.8'}); //Fade sub nav to 0 opacity on default
  $("ul#topnav li").hoverIntent(config); //Trigger Hover intent with custom configurations
  $(".slidetabs").tabs(".images > div", {
    effect: 'fade',
    fadeOutSpeed: "slow",
    rotate: true
  }).slideshow({autoplay: true,interval:6000});

});

