//sets up the image rollovers for the menu bar buttons.
$(function(){
//preload the 2nd image for rollover, bye bye lag.

$("#menus-top li").hover(menuTopOver, menuTopOut);
$(".menu-top-segment-4 li").hover(menuTopOver2, menuTopOut2);

});//end onload function

function menuTopOver() {
	 $(this).css({'background-color' : '#627d8d'});
	}//end onOver
function menuTopOut()  {	
	 $(this).css({'background-color' : ''});
	}
function menuTopOver2() {
	 $(this).css({'background-color' : '#79100e'});
	}//end onOver
function menuTopOut2()  {	
	 $(this).css({'background-color' : ''});
	}



