//black forest site scripts


//navigation hover select

$(function() {

	$('.hover-item').hover(function() {
        $(this).addClass('hover-select');
    	}, function() {
        $(this).removeClass('hover-select');
     });

});


