$(document).ready(function(){

	$('.bubble').live('click', function(){
		$(this).toggleClass('active');
		if ($(this).is('.active')) {
			var posX = $(this).children('.bp-wp').offset().left;
			if (posX > $(window).width()/2)
				$(this).addClass('bubble-left');
			$(this).addClass('active');
			$(document).bind('mousedown', function() {
				$('.bubble').removeClass('active');
				$(document).unbind('mousedown');
			});
		}
		return false;
	});
	$('.bubble .close').live('click', function() {
		$(this).parent().parent().parent().removeClass('active');
	});
	
	$('.w-more').live('click', function(){
		var slide = $(this).next('.slide');
		if (slide.length == 0)
			slide = $(this).parent().next('.slide');
		slide.slideToggle(500);
		return false;
	});
	$('.w-add').live('click', function(){
		$(this).next().toggle();
		return false;
	});
	
	//===================== бутылочки СИ =======================
	$('.secret-ingr ul li').live('mouseenter', function(){
		$('.secret-ingr ul li').removeClass('active');
		$(this).addClass('active');
	});

});

