$(document).ready(function(){
	// VKLADKI
	$('.center li.vk').hover(function(e){
		$('.center .vk').removeClass('active');
		$('.center .vk ul.vip').hide();
		$(this).addClass('active');
		$(this).children('ul.vip').show();
	});
		
});
$(window).resize(function(){
});
