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