function init(){
	initNavigation();

	$j('#teaserFields > .csc-textpic').each(function(inIndex){
		$j(this).draggable();
		$j(this).css('cursor','move');
	});
	
	
	var theOffset = $j('#content').offset();
	footerTopPos = theOffset.top;
	$j('#teaserFields').css('top', (footerTopPos-20) + 'px');
	$j('#teaserFields').css('display', 'block');

	if ($j('#content').height() < ($j('#teaserFields').height() - 20)){
		$j('#innerWrap').css('height',($j('#innerWrap').height() + ($j('#teaserFields').height() - $j('#content').height() - 20)) + 'px')
	}	

	sameheight();
	
	window.onresize = function(){
		sameheight();
	}	
	
	initLightbox();
}