// MENU - SUPP NAV
$(document).ready(function() {
	// Menu controls
	$('#supp-nav-menu ul > li').hover(function() {
		$(this).find('a:first-child').css('backgroundColor', '#ffffff');
		}, function() {
		$(this).find('a:first-child').css('backgroundColor', '#ededed');
		});
});
