$( function() {
		
	$( 'div' ).find( '#open' ).css( { cursor: 'pointer' } ).bind( 'click', function() {
		var blee = $( '#'+this.name+'' ).css("display");
			 
			if(blee != 'block') {
				$.cookie('produkty_' + this.name + '', '1');
			} else $.cookie('produkty_' + this.name + '', '0');
			$( '#' + this.name + '' ).slideToggle("def");
			
			$( '#' + this.name + 'a' ).slideToggle("def");
 
	} );
} );

$( function() {
	$( 'div' ).find( '#opena' ).css( { cursor: 'pointer' } ).bind( 'click', function() {
				var forum_div_id = this.name;
			$( '#' + forum_div_id + '' ).toggle();
			$( '#' + forum_div_id + 'a' ).toggle();
	} );
} );

