/**
wird nicht verwendet - (mit Table gelöst)
**/

function setPage(){
  var x=0;
  if(window.innerHeight-450){
  x=(window.innerHeight-450)/2;
  }
  else{

  }
$('#page').attr('style',"margin-top:"+x+"px");
}

/**

**/
function removeNav(x){
//alert(x);
    $('#navi').slideUp('slow', function(){
    $('#text').fadeOut('slow',function(){
    window.location.href=x;
    });
    });
    
}
function goHome(){
    $('#path').fadeOut('slow', function(){
      $('#text').fadeOut('slow',function(){
      window.location.href='intro.html';
      });
    });

}

function goHome_en(){
    $('#path').fadeOut('slow', function(){
      $('#text').fadeOut('slow',function(){
      window.location.href='en_intro.html';
      });
    });

}
/**
**/
function init(){

}

var text_curr_nav=0;

function showText(x,pict){
  $('#text_').slideUp(500,function(){
    if(pict!=''){
    $('#page').attr("style","background-image: url(images/"+pict+");");
    }
    $('#text_nav_'+text_curr_nav).attr('style','color:black;font-weight:normal;');
    
    text_curr_nav=x;
    $('#text_nav_'+x).attr('style','color:black;font-weight:bold;');
    var content=$('#text_'+x).html();
    $('#text_').html(content);
    $('#text_').slideDown(2000);
    }
);
}
/**ss
**/
function removePict(){
$('#picture').remove();
$('#mask').remove();
}
/**
**/
function showPict(src){
$('body').prepend("<div id='mask'></div>");
$('#page').append("<div id='picture'>hier kommt ein Bild<a href='javascript:removePict();'>&raquo;schließen</a></div>");
$('#picture').attr('style','background-color:blue;text-align:right;width:800px;height:450px;z-index:2;position:relative;top:0;left:0px;');
$('#mask').attr('style','background-color:black;width:2000px;opacity:0.7;height:2000px;z-index:1;position:absolute;top:0;left:0px;');

}
/**
**/
function showMovie(src){
$('body').prepend("<div id='mask'></div>");
$('#page').append("<div id='picture'>hier kommt ein film<a href='javascript:removePict();'>&raquo; schließen</a></div>");
$('#picture').attr('style','background-color:blue;text-align:right;width:800px;height:450px;z-index:2;position:relative;top:0;left:0px;');
$('#mask').attr('style','background-color:black;width:2000px;opacity:0.7;height:2000px;z-index:1;position:absolute;top:0;left:0px;');
}
