﻿$(document).ready(function () {

    //alert('Mapping is correct');

    $('#dPopUpText').css({ 'opacity': '.95' });

    $('#DistributerMessage').mouseover(function () {
        $('#dPopUpText').toggle();

    });

    $('#DistributerMessage').mouseout(function () {
         $('#dPopUpText').toggle();

    });

    $('#dCloseBtn').click(function () {
        $('#dPopUpText').fadeOut('slow');
    });


//     $('#DistributerMessage').hoverIntent({
//sensitivity: 7, // number = sensitivity threshold (must be 1 or higher)
//	interval: 100,   // number = milliseconds of polling interval
//over: showNav,  // function = onMouseOver callback (required)
//	timeout: 0,   // number = milliseconds delay before onMouseOut function call
//out: hideNav    // function = onMouseOut callback (required)
// });

});
