jQuery.noConflict();
(function($){
	$(function(){
		$(".datepicker").datepicker($.datepicker.regional['de']);

		$("div#controller").jFlow({
			slides: "#slides",
			width: "940px",
			height: "340px",
			auto: true
		});

		$(".btn-slide").click(function(){
			$("#panel").slideToggle("slow");
			$(this).toggleClass("active"); return false;
		});

		$('#accordion').accordion({ active: false, header: 'h3' });
		$('#accordion h3').each(function(){
			if($(this).next().is('div')){
				$(this).children('a').attr('href','javascript:void(0);');
			}else{
				$(this).next().show();
				$(this).unbind('click');
			}
		});
	});
})(jQuery);

