jQuery.noConflict();
jQuery(document).ready(function() {


	jQuery(".accordion").accordion({
		animated: false,
		autoHeight: false,
		header: "h4"
	});
	
	jQuery('.tabs').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	

	jQuery(".button").click(function(){window.location=jQuery(this).find("a").attr("href"); return false;});
	jQuery(".button").mouseover(function(){jQuery(this).css("cursor","pointer");});

	jQuery("#slideshow1").easySlider({
		continuous: false,
		speed: 2000,
		nextId: "slideshow1-next",
		nextText: 'weiter',
		prevId: "slideshow1-previous",
		prevText: 'zur&uuml;ck',
		controlsBefore: '<div class="slideshow-controls">',
		controlsAfter: '</div>'		
	});

	jQuery(".image-slider").easySlider({
		continuous: true,
		speed: 2000,
		nextId: "slider1next",
		prevId: "slider1prev"
	});
	
	jQuery('#slideshow').cycle({
		fx: 'fade', 
		speed: 2000, 
		timeout: 5000, 
		next: '#sidebarneu #slideshow', 
		pause: 1 
	});
	jQuery('#slideshow').css('cursor','pointer');
	
	
});