window.object_mes_hashTab = function(tabId, tourId) {
    var hash = window.location.hash.replace(/#/, ''),
        cId = tourId.replace(/-.*/, '');

    var handleTabClick = function(){
        hash = $(this).attr('id').replace(/.*?-/,'');
        $('#course-default').fadeOut(0);
        $('#course-plan').fadeOut(0);
        $('#course-schedule1').fadeOut(0);
        $('#course-schedule2').fadeOut(0);
        $('#' + cId + '-' + hash).css('visibility','visible').fadeIn();
    };
    
    $.ready($('div','#'+tabId).hover(handleTabClick));
    
};