function init(){
	initNavigation();

	$j('.teaserBox').each(function(inIndex){
		$j(this).draggable();
		$j(this).css('cursor','move');
	});
	
	$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-50) + 'px');
	$j('#teaserFields').css('display', 'block');

	if ($j('#content').height() < $j('#teaserFields').height()){
		$j('#innerWrap').css('height',($j('#innerWrap').height() + ($j('#teaserFields').height() - $j('#content').height())) + 'px')
	}	
	
	initLightbox();
}
