﻿ //Ruller
 function mouse_over(obj)
 {
	obj = document.getElementById(obj);
    obj.className  = "tabOver";
 }
 function mouse_out(obj)
 {
	obj = document.getElementById(obj);
    obj.className  = "tab";
 }
 
 
 
//Navigator 
 function mouse_over_navigator(obj)
 {
	obj = document.getElementById(obj);
    obj.className  = "TableOver3";
 }
 function mouse_out_navigator(obj)
 {
	obj = document.getElementById(obj);
    obj.className  = "TableOver2";
 }
 
