// JavaScript Document

$(document).ready(
                  
function()

{
  PEPS.rollover.init();
  //checkFieldsFilled();    //This is commented out because it was crashing this script.
                            //checkFieldsFilled is no longer used, to my knowledge -A
$("td.topNav").mouseover(function(){
      
	  $(this).addClass("lightGreenBackground");
    }).mouseout(function(){
	  $(this).removeClass("lightGreenBackground");
		
	});



$("td.subCatNav").mouseover(function(){
      
	  $(this).addClass("brightGreenBackground");
    }).mouseout(function(){
	  $(this).removeClass("brightGreenBackground");
		
	});

});


