jQuery(function(){


	jQuery.fn.scrollToTop=function() {
		jQuery(this).removeAttr("href");
		jQuery(this).click(function(){ // Klick des ToTop-Links
			jQuery("html, body").animate({scrollTop:0},"slow")
		})        
	}



	jQuery(document).ready(function(){      
		
		
		/////////////////////////////////////////
		// IE PNG Fix
		/////////////////////////////////////////
		jQuery(document).pngFix();
		jQuery('a').pngFix();
		
		
		/////////////////////////////////////////
		// Scroll to top
		/////////////////////////////////////////
		jQuery(".totop").scrollToTop(); 

		/////////////////////////////////////////
		// Accordion (News Teaser)
		/////////////////////////////////////////
		jQuery('#teaser').accordion({
			// Causes easing bugs!!
			//autoheight: false
			active: false,
			header: 'h4',
			collapsible: true
		});
		
		
		/////////////////////////////////////////
		// LineHeight for flexible Layouts
		/////////////////////////////////////////
		jQuery('#content-right').autolineheight({minWidth:30,minLineHeight:1.2,ratio:.03});
		
		
		
	});
	
});
