// jQuery rollover code top navigation

$(document).ready(function(){
	$('ul#navigation-row1 li').hover(
		function(){$(this).css('background', '#336666'); $(this).children('a').css('color', '#ffffff');},
		function(){$(this).css('background', '#ffd147'); $(this).children('a').css('color', '#336666');}
	);
	$('ul#navigation-row2 li').hover(
		function(){$(this).css('background', '#336666'); $(this).children('a').css('color', '#ffffff');},
		function(){$(this).css('background', '#ffd147'); $(this).children('a').css('color', '#336666');}
	);
});
