﻿function robMouseOver(clientid)
{
    var cellLeft = document.getElementById(clientid + 'L');
    var cellContent = document.getElementById(clientid + 'C');
    var cellRight = document.getElementById(clientid + 'R');
    
    if (cellLeft != null)
    {
        cellLeft.className = 'wcl-robLeftH';
    }
        
    cellContent.className = 'wcl-robContentH';
    
    if (cellRight != null)
    {
        cellRight.className = 'wcl-robRightH';
    }
}

function robMouseOut(clientid)
{
    var cellLeft = document.getElementById(clientid + 'L');
    var cellContent = document.getElementById(clientid + 'C');
    var cellRight = document.getElementById(clientid + 'R');
    
    if (cellLeft != null)
    {
        cellLeft.className = 'wcl-robLeft';
    }
        
    cellContent.className = 'wcl-robContent';
    
    if (cellRight != null)
    {
        cellRight.className = 'wcl-robRight';
    }
}

/*Course Viewer wcl*/

function pagerMouseOut(el) {
    //var el = document.getElementById(clientId);
    el.className = 'wcl-pagerMouseOut';
}

function pagerMouseOver(el) {
    //var el = document.getElementById(clientId);
    el.className = 'wcl-pagerMouseOver';
}
