/*
 * Created by Artod
 *
 * http://MoiaVizitka.ru/Artod, http://artod.ru
 *
 * Date: 2009-09-16 17:34:21 -0500 (Thu, 16 Feb 2009)
 *
*/
 
$(document).ready(function(){
	$("a.fancybox").fancybox({
		'zoomOpacity' : false,
		'overlayShow' : true,
		'hideOnContentClick' : false,
		'overlayOpacity' : '0.8',
		'zoomSpeedIn' : '200',
		'zoomSpeedOut' : '200'
	});

	$("a.bayan").next().hide();
	
		var cookie = $.cookie('bayan');
		if (cookie) {
			cookie = cookie.split('|');
			for (var i = 0, l = cookie.length; i < l; i++) {
				if (cookie[i]) {
					$("#"+cookie[i]).next().show();
				}
			}	
		}
	
	

	
	
	$("a.bayan").click(function(){
		if ($(this).next().css('display') == 'block') {
			$(this).next().slideUp(function (){
				resetCookie();
				//deleteCookie('bayan');
				//alert($.cookie('bayan'));
			});
		}
		else
			$(this).next().slideDown(function (){
				resetCookie();
				//deleteCookie('bayan');
				//alert($.cookie('bayan'));
			});
		return false;
	});
	
});

function resetCookie() {
	$.cookie('bayan', '', {path: '/'});
	var cookie = '';
	$("a.bayan").each(function(){
		if ($(this).next().css('display') == 'block') {
			cookie += $(this).attr('id')+'|';
		}
	});
	$.cookie('bayan', cookie, {path: '/'});
}
