<!--

var cellName=null;
var imageDir="/graphics/";

//pre-load images if "Image" is defined


if(document.images)
   {
    var item_IMG_01_off = new Image();
    item_IMG_01_off.src = imageDir+"button_home_off.gif"; 
    var item_IMG_01_on  = new Image();
    item_IMG_01_on.src  = imageDir+"button_home_on.gif";

    var item_IMG_02_off = new Image();
    item_IMG_02_off.src = imageDir+"button_aboutus_off.gif"; 
    var item_IMG_02_on  = new Image();
    item_IMG_02_on.src  = imageDir+"button_aboutus_on.gif";

    var item_IMG_03_off = new Image();
    item_IMG_03_off.src = imageDir+"button_schedule_off.gif";
    var item_IMG_03_on  = new Image();
    item_IMG_03_on.src  = imageDir+"button_schedule_on.gif";
    
     var item_IMG_04_off = new Image();
    item_IMG_04_off.src = imageDir+"button_policy_off.gif"; 
    var item_IMG_04_on  = new Image();
    item_IMG_04_on.src  = imageDir+"button_policy_on.gif";
    
     var item_IMG_05_off = new Image();
    item_IMG_05_off.src = imageDir+"button_faq_off.gif"; 
    var item_IMG_05_on  = new Image();
    item_IMG_05_on.src  = imageDir+"button_faq_on.gif";
    
     var item_IMG_06_off = new Image();
    item_IMG_06_off.src = imageDir+"button_support_off.gif"; 
    var item_IMG_06_on  = new Image();
    item_IMG_06_on.src  = imageDir+"button_support_on.gif";
	
	var item_IMG_07_off = new Image();
    item_IMG_07_off.src = imageDir+"button_start_off.gif"; 
    var item_IMG_07_on  = new Image();
    item_IMG_07_on.src  = imageDir+"button_start_on.gif";
 
    }

function over(cellName) 
    {
     if(document.images) 
       {
        if(cellName == 'button1') {document[cellName].src = item_IMG_01_on.src;}
        if(cellName == 'button2') {document[cellName].src = item_IMG_02_on.src;}
        if(cellName == 'button3') {document[cellName].src = item_IMG_03_on.src;}
        if(cellName == 'button4') {document[cellName].src = item_IMG_04_on.src;}
        if(cellName == 'button5') {document[cellName].src = item_IMG_05_on.src;}
        if(cellName == 'button6') {document[cellName].src = item_IMG_06_on.src;}
		if(cellName == 'button7') {document[cellName].src = item_IMG_07_on.src;}
       }
}

function out(cellName) 
    {
     if(document.images) 
       {
        if(cellName == 'button1') {document[cellName].src = item_IMG_01_off.src;}
        if(cellName == 'button2') {document[cellName].src = item_IMG_02_off.src;}
        if(cellName == 'button3') {document[cellName].src = item_IMG_03_off.src;}
        if(cellName == 'button4') {document[cellName].src = item_IMG_04_off.src;}
        if(cellName == 'button5') {document[cellName].src = item_IMG_05_off.src;}
        if(cellName == 'button6') {document[cellName].src = item_IMG_06_off.src;}
		if(cellName == 'button7') {document[cellName].src = item_IMG_07_off.src;}

      }
}
//-->