$(function() {
	Shadowbox.init();

	$('.b-catalog-panel-control a').click(function(e) {
		e.preventDefault();
		var self = $(this);
		
		self.parent().find('a').removeClass('active');
		self.addClass('active');
		
		$('.b-catalog-detail-panel').removeClass('active');
		
		$(self.attr('href')).addClass('active');
	});
	
	$('.b-search').focusin(function() {
		if ($(this).val() === 'Поиск') $(this).val('');
	});
	
	$('.b-search').focusout(function() {
		if ($(this).val().length === 0) $(this).val('Поиск');
	});
	
	$('#slider').nivoSlider({
		effect: "boxRainReverse",
		pauseTime: 6000,
		directionNavHide: false
	});
});

