// JavaScript Document
$(function(){
	
	$('.boxes').slideToggle("fast");
	$(".box_head").each(function (i) {
        idelem = $(this).attr('id');
		idelemdiv = idelem.replace('boxhead_', 'box_');
    });

	$('.box_head').click(function(){
		idelem = $(this).attr('id');
		$('.subtext',this).text(
			$('.subtext',this).text() == '[mehr]' ? '[weniger]' : '[mehr]'
		);
		
		idelemdiv = idelem.replace('boxhead_', 'box_');
		$('#'+idelemdiv).slideToggle("normal");
	});
	
		$('.box_head').hover(
		function() { $(this).css('cursor', 'pointer'); },
		function() { $(this).css('cursor', 'default'); }
	);
});
