$(document).ready( function() {			
	$('#navbar ul li a').mouseover(function() {
		$(this).css('color', '#9E0B0F').css('background-color','#A1A1A1');
	}).mouseout(function() {
		if ( !$(this).parent().is(".current") ) {
			$(this).css('color', '#FFF').css('background-color','#9E0B0F');
		}
	});
});


