﻿jQuery(document).ready(function(){
/*
    jQuery(document).mousemove(function(e){
        jQuery(".mousetip").css({ top: e.pageY + "px", left: e.pageX+20 + "px" });
    });
*/
    jQuery('.calendar td[title], #workspace .calendar td[title]').bind('mouseover', function(){

        jQuery(this).append('<div class="mousetip"></div>')
        jQuery(".mousetip").html( jQuery(this).attr('title').replace(', ','<br />') ).show()
        jQuery(this).attr('title', '')
        
    })

    jQuery('.calendar td[title], #workspace .calendar td[title]').bind('mouseout', function(){

        if ( jQuery(".mousetip").html() != null )
        {
            jQuery(this).attr('title', jQuery(".mousetip").html().replace('<br />', ', ') )
            jQuery(".mousetip").hide().html( '' )
            jQuery(this).find('.mousetip').remove()
        }
        
    })

    jQuery('#workspace .calendar td[bookingid]').bind('mouseover', function(){

        jQuery('#workspace .calendar td[bookingid=' + jQuery(this).attr('bookingid') + ']').addClass('hover')

    })

    jQuery('#workspace .calendar td[bookingid]').bind('mouseout', function(){

        jQuery('#workspace .calendar td[bookingid=' + jQuery(this).attr('bookingid') + ']').removeClass('hover')

    })

});
