allright. Got a solution but had to change the logic in everything.
Now I got a page without any sidebars. Just the static front page “Home”. This page loadsthe content of another static page via
<?php query_posts('page_id=66');
if (have_posts()) : ?>
<div>
<?php while (have_posts()) : the_post(); ?>
<?php endwhile; ?>
</div>
<?php endif; ?>
Right now I just got one page (Id=66) but i’ll get more soon. An I will get the page Id I need via $_GET[]