$(document).ready(function() {
// tooltip
$(function(){
	$("[title]").mbTooltip({
    	opacity : 1, //opacity
    	wait:10, //before show
    	ancor:"mouse", //"parent"
    	cssClass:"default", // default = default
    	timePerWord:70, //time to show in milliseconds per word
    	hasArrow:false,
    	color:"#000000",
    	imgPath:"images/",
    	shadowColor:"black",
    	fade:500
  	});
})


});