$(function () {
			$('.clanwars_gerust:first').show();
		$('.clanwars_auswahl:first').addClass('clanwars_auswahl_hover');				   
	$('.clanwars_auswahl').click(function() {
		$('.clanwars_auswahl_hover').removeClass('clanwars_auswahl_hover');
		$(this).addClass('clanwars_auswahl_hover');
		var navipos = $(this).index();
		$('.clanwars_gerust').fadeOut(100);
		$('.clanwars_gerust:eq('+navipos+')').stop(true, true).slideToggle(600);
	});
	
			
	$('#fc_wrapper').anythingSlider({
		easing: "swing",        // Anything other than "linear" or "swing" requires the easing plugin - easeInOutExpo
		autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
		delay: 4000,                    // How long between slide transitions in AutoPlay mode
		startStopped: false,            // If autoPlay is on, this can force it to start stopped
		animationTime: 300,             // How long the slide transition takes
		hashTags: true,                 // Should links change the hashtag in the URL?
		buildNavigation: false,          // If true, builds and list of anchor links to link to each slide
		pauseOnHover: true            // If true, and autoPlay is enabled, the show will pause on hover
	   // navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
	});   
});

function jumpto(id) {
	$('#fc_wrapper').anythingSlider(id);
}		

<!-- 
function click(evt) { 
if (navigator.appName.indexOf("Microsoft") != -1){ 
if (event.button==2) { 
alert('Do not Copy-Paste !'); 
return false 
}; 
}; 
if (navigator.appName.indexOf("Netscape") != -1) { 
if ( evt.which == 3 ) { 
alert('Do not Copy-Paste ... ask us !'); <!-- Meldung, die angezeigt wird-->
return false 
}; 
}; 
}; 
if (navigator.appName.indexOf("Netscape") != -1) { 
document.captureEvents( Event.MOUSEDOWN ) 
}; 
document.onmousedown = click; 
// --> 
<!-- Wechseln der Bilder (Icons in der Headline -->
function changeImage(image) {
	image = image.getElementsByTagName('img')[0];
	var pos = image.src.indexOf('1.png');
	if(pos != -1)
	{
		image.src = image.src.replace(/1.png$/, "2.png");
	}
	else
	{
		image.src = image.src.replace(/2.png$/, "1.png");
	}
}

