	 defaultStatus = "Mommy's Maternity        Call (701) 232-4972         http://mommysmaternity.com";

var rowColor=0;
   var cellColor=0;
   
    function RowOn(row,cell) {
     for (i=0; i<MyTable.rows[row].cells.length; i++) {
       MyTable.rows[row].cells[i].style.background = '#F2E6FF';
     }
     MyTable.rows[row].cells[cell].style.background = '#F2E6FF';
    }

    function RowOff(row,cell) {
     for (i=0; i<MyTable.rows[row].cells.length; i++) {
       MyTable.rows[row].cells[i].style.background = rowColor;
     }
     MyTable.rows[row].cells[cell].style.background = cellColor;
    }

   function SetTable() {
     rowColor = MyTable.rows[0].style.background;
     cellColor = MyTable.rows[0].cells[0].style.background;
     for (i=0; i<MyTable.rows.length; i++) {
       for (j=0; j<MyTable.rows[i].cells.length; j++) {
         MyTable.rows[i].cells[i].style.background = cellColor;
       }
       MyTable.rows[i].style.background = rowColor;
     }
   }
   
   btnGoOn = new Image(20,12);
     btnGoOn.src = 'btnGoOn.gif';
     btnGoOff = new Image(20,12);
     btnGoOff.src = 'btnGoOff.gif';

     function imgOver(imgName) {
       imgSrc = eval(imgName + "On.src");
       document[imgName].src = imgSrc;
     }

     function imgOut(imgName) {
       imgSrc = eval(imgName + "Off.src");
       document[imgName].src = imgSrc;
     }

     function toggleLink(obj) {
       if(obj.className == 'srchLinksOff')
         obj.className = 'srchLinksOn'
       else
         obj.className = 'srchLinksOff'
     }

     function clearSearch(obj) {
       if(obj.value == 'Search Mommys...') obj.value = '';
     }

     function doSearch() {
     
     }
	 
