$(function(){
	/*
	$('.jLink').click(function(e){
		e.preventDefault();
		var href = $(this).attr('href').replace(/\?content=/,'').split('?');
		var url=href[0];
		var query=href[1];
		if(window.location.href.search(/\?content=/)==-1){
			//alert('go');
			window.location.href = "/site/?content="+url.replace(/\/site\//,'');
			return null;
		}
		getAjaxContent(url,'#content',query);
	});// END .link
*/
// Anpassungen für die Pflegeschwerpunkte
	$("[id^='step']").hide();
	$('.back').remove();
	$("#step1").show();
	$('.stepController').click(function(e){
		e.preventDefault();
		$('.stepController').children('img').animate({opacity:'0.5'})
		var stepNr = $(this).attr('href').replace(/.+#/,'').replace(/#/,'');
		$("[id^='step']").hide();
		$("#step"+stepNr).show();
		$(this).children('img').animate({opacity:'1'});
	}).children('img').css({opacity:'0.5'})// end stepCtl
	$('.stepController').eq(0).children('img').css({opacity:'1'})
});/*END*/
