$(document).ready(function(){
	$('#splashMenu > li > a').mouseenter(function(){
		$(this).children('div').animate({
			backgroundColor: '#FFD243',
			borderColor: '#C89800'
		}, 'fast');
	});
	$('#splashMenu > li > a').mouseleave(function(){
		$(this).children('div').animate({
			backgroundColor: '#FFFFFF',
			borderColor: '#A6A6A6'
		}, 'fast');
	});
	$('#bannerMenu > li:not(#current)').mouseenter(function(){
		$(this).animate({
			backgroundColor: '#FFD243',
			height: 30
		});
	});
	$('#bannerMenu > li:not(#current)').mouseleave(function(){
		$(this).animate({
			backgroundColor: '#F0F4F5',
			height: 20
		});
	});
});
