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

$("#footer-content a").hover(footerOver, footerOut);

});//end onload function

function footerOver() {
	 $(this).css({'color' : '#1d3646'});
	}//end onOver
function footerOut()  {	
	 $(this).css({'color' : '#476779'});
	}


