$(function(){

	
	$('.boxes').hide();
	$(".box_head").each(function (i) {
      idelem = $(this).attr('id');
		idelemdiv = idelem.replace('boxhead_', 'box_');
		change_boxText(idelem);
    });


	$('.box_head').click(function(){
		idelem = $(this).attr('id');
		idelemdiv = idelem.replace('boxhead_', 'box_');
		$('#'+idelemdiv).slideToggle(1200); // MS
		change_boxText(idelem);
	});

	$('.box_head').hover(
		function() { $(this).css('cursor', 'pointer'); },
		function() { $(this).css('cursor', 'default'); }
	);
});

function change_boxText(elem){
	var textOpen 	= 'Erfahren Sie mehr »',
		 textClose 	= 'schlie&szlig;en';
		 
	text = $('#'+elem).text();
	if (text == "Erfahren Sie mehr »"){
		text = text.replace("Erfahren Sie mehr »", "schließen");
	} else {
		text = text.replace("schließen", "Erfahren Sie mehr »");
	}
	text = $('#'+elem).text(text);
}
