function dynContent(pageId) {
					$('div[active|=true]').fadeOut('fast', function() {
						$('td[active|=true]').css('background-color','#dddddd');
		    		  
		    		  
		    		  
		    		  $('#button'+ $('div[active|=true]').attr('id')).attr('class','button');
		    		  $('#translate a').each(function(){
		    			  if($(this).attr('href').search(/page/) != -1){
		    				  $(this).attr('href',$(this).attr('href').replace(''+$('div[active|=true]').attr('id'),''+pageId));
		    			  }
		    			  else {
		    				  $(this).attr('href',$(this).attr('href')+'/'+pageId);
		    			  }
		    			});
		    		  
		    		  $('div[active|=true]').attr('active', 'false');
		    		  $('td[active|=true]').attr('active', 'false');
		    		  
		    		  $('#button'+ pageId).attr('class','button active');
		              $('#' + pageId).fadeIn('slow', function(){
		            	  $('#' + pageId).attr('active', 'true');
		            	  this.style.removeAttribute('filter');
		                  });
		              $('#cell_'+pageId).css('background-color','#eeeeee');
		              $('#cell_'+pageId).attr('active', 'true');
		    	  });
		      }

