$.noConflict();

jQuery.fn.fadeToggle = function(speed, easing, callback) {   			
	return this.animate({opacity: 'toggle'}, speed, easing, callback);	
};

jQuery.fn.marquee = function(speed, easing, callback) {
	return this.animate({left: '-7800px'}, 70000);
}

jQuery(document).ready(function($) {
	// Klappende Elemente auf startseite
	var elem1 = $('#c8 .bodytext:nth-child(2)');
	var elem2 = $('#c9 .bodytext:nth-child(3)');
	elem1.hide();
	elem2.hide();
	$('#c8 a').click(function() {
		elem1.fadeToggle();
		return false;
	});
	$('#c9 a').click(function() {
		elem2.fadeToggle();
		return false;
	});
	$('#marquee h1').marquee();
});
