/* Pokazywanie, ukrywanie menu */
s2d.utils = {
	
	showClose: function(id){
		$(id).toggle();
	},
	
	toggleAll:function(selektor){
		$(selektor).each(function(){
			$(this).toggle();
		});
	}
};
