$(document).ready(function(){
	
	$('div.f_mover').each(function(){

		$elem_id = $(this).attr('id');
		$c = $.cookie($elem_id);
		
		if($c && $c == 'open')
		{
			$(this).show();
			$(this).siblings('.options-box').addClass('box_open');	 	
		}
		else
		{
			$(this).hide();
			$(this).siblings('.options-box').addClass('box_closed');
		}
	});
		
	
	$('.options-box').click(function(){

		$elem_id = $(this).siblings().attr('id');
		
		$(this).siblings('.f_mover').slideToggle('normal',
			function(){
                if ($(this).is(':hidden')) 
				{
                    var state = "closed";
					$(this).siblings('.options-box').removeClass('box_open');
					$(this).siblings('.options-box').addClass('box_closed');
                } 
				else
				{
                    var state = "open";
					$(this).siblings('.options-box').removeClass('box_closed');
					$(this).siblings('.options-box').addClass('box_open');
                }
        
				$.cookie($elem_id, state);
                return false; 
			});
	});

});



