
$(document).ready(function(){
	
	// navigation
	$('#nav li').hover(
		function(){
			$(this).prev().addClass('hover-sibling-prev');
			$(this).next().addClass('hover-sibling-next');
		},
		function(){
			$(this).prev().removeClass('hover-sibling-prev');
			$(this).next().removeClass('hover-sibling-next');
		}
	);
	
});