$(function(){
	var tabs = $('.tabs__name-link');

	tabs.click(function(event){

		event.preventDefault();

		var tab = $(this).parent();
		
		tab.removeClass('tabs__name-hover');
		tab.siblings().removeClass('tabs__content-selected').removeClass('tabs__name-selected');
		
		tab.next('.tabs__contnet').addClass('tabs__content-selected');
		tab.addClass('tabs__name-selected');
	});


	$('.tabs__name').hover(
		function() {
			if (!$(this).hasClass('tabs__name-selected')) {
				$(this).addClass('tabs__name-hover');
			}
		},
		function() {
			$(this).removeClass('tabs__name-hover');
		}
	);
});


