﻿
$(document).ready(function(){
    $('.ttip[title]').tooltip({
        // tweak the position
        offset: [0, 5],
        position: "center right",
        predelay: 400
        // add dynamic plugin with optional configuration for bottom edge
    });
    $('.ttip_bottom[title]').tooltip({
        // tweak the position
        offset: [5, -100],
        position: "bottom right",
        predelay: 400,
        tipClass:"tooltip_200"
        // add dynamic plugin with optional configuration for bottom edge
    });
    $('.ttip_left[title]').tooltip({
        // tweak the position
        offset: [0, -5],
        position: "center left",
        predelay: 400
        // add dynamic plugin with optional configuration for bottom edge
    });
    $('.ttip_emplmoreinfos[title]').tooltip({
        // tweak the position
        offset: [80, 0],
        position: "center right",
        predelay: 400,
        tipClass: "tooltip_emplmoreinfos"
        // add dynamic plugin with optional configuration for bottom edge
    });
});
