jQuery( function($) {
	
	$('.nav-categories li:not(.active)').each( function() {
		$(this).hover(
			function() {
				$(this).addClass('hover').append(
					$( '<div />' ).addClass('r')
				).append(
					$( '<div />' ).addClass('l')
				);
			}, function() { 
				$(this).removeClass('hover').children('div').remove();
			}
		);
	});
	
	$('.nav-categories li.active').each( function() {
		$(this)
			.append( $( '<div />' ).addClass('r') )
			.append( $( '<div />' ).addClass('l') );
	});

});
