jQuery.noConflict();
function changePic(what,pic)
{
	//jQuery('.'+what).animate({opacity: 0.0}, "fast",function(){jQuery('.'+what).attr('src','/fileadmin/system/lay/'+pic).animate({opacity: 1.0}, "fast");});
	jQuery('.'+what).attr('src','/fileadmin/system/lay/'+pic);
}

function changePicBg(what,pic)
{
//alert(what+"-"+pic);
	//jQuery('.what').animate({opacity: 0.0}, "fast",function(){jQuery('.'+what).attr('src','/fileadmin/system/lay/'+pic).animate({opacity: 1.0}, "fast");});
	var im = "/fileadmin/system/lay/"+pic;
	
	jQuery('#'+what).css('background-image','url('+im+')');
	
}

function changeBgColor(what,col)
{
	jQuery('#'+what).css('background-color',col);
	
}

jQuery(document).ready(function(){
//jQuery('.akkordeon').children('h2').after(wrap('<div></div>'));

  jQuery('.akkordeon').children('h2').next('').css("display","none");
   jQuery('.akkordeon').children('h2').next('').addClass("bord");
  jQuery('.akkordeon').children('h2').click(function(){
    jQuery(this).next('').slideToggle('normal');
    jQuery(this).toggleClass('minus');
  });

});
