//
// Title: Artists tiles hover effect
//*********************************
this.artistnfo = function(e){
// Configuration
xOffset = 55;
yOffset = 480;
$("ul.artist-tiles li > a").hover (
function (e) {
$(this).parent().children(".profile-info")
.css("top", (e.pageY - xOffset) + "px")
.css("left", (e.pageX - yOffset) + "px")
.css("display", "block")
.fadeTo("fast", 0.88);
},
function () {
$(this).parent().children(".profile-info")
.css("display", "none")
.fadeTo("fast", 0);
}
);
$("ul.artist-tiles li > a").mousemove(function(e){
$(this).parent().children(".profile-info")
.css("top", (e.pageY - xOffset) + "px")
.css("left", (e.pageX - yOffset) + "px")
}
);
};
$(document).ready(function(){
// Starts jquery tool tip for artist tiles
artistnfo();
});