
function mOver(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#E1AAA6';
   }
}

function mOut(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '';
   }
}


function mClick(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}

//Montage
function mOvermontage(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#189321';
   }
}

function mOutmontage(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#BCDFBF';
   }
}


function mClickmontage(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}

//Sanitärkabinen
function mOversanitaer(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#E70031';
   }
}

function mOutsanitaer(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#E1AAA6';
   }
}


function mClicksanitaer(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}

//Pulverbeschichtung
function mOverpulver(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#D5CF27';
   }
}

function mOutpulver(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#EDEBBC';
   }
}


function mClickpulver(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}

//Fertigung
function mOverfertigung(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#168BC2';
   }
}

function mOutfertigung(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#BAE2F5';
   }
}


function mClickfertigung(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}

//Aktuell
function mOveraktuelles(cell)
{
   {
      cell.style.cursor = 'hand';
      cell.bgColor = '#6EB8B5';
   }
}

function mOutaktuelles(cell)
{
   {
      cell.style.cursor = 'default';
      cell.bgColor = '#AEDDDB';
   }
}


function mClickaktuelles(cell)
{
   {
      cell.children.tags('A')[0].click();
   }
}