// JavaScript Document

$(document).ready( function()
{

  PEPS.rollover.init();

$("td.topNav").mouseover(function(){
      
	  $(this).addClass("lightGreenBackground");
    }).mouseout(function(){
	  $(this).removeClass("lightGreenBackground");
		
	});



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

});

