$(document).ready(function(){
	
	$('.container_rechts .box .titel').prepend('<img src="/fileadmin/templates/site/img/container_rechts/box_titel_img_up.gif" alt="Einklappen">');
	
	/*
	$('.container_rechts .box .titel').css('cursor','pointer').click(
		function(){
			$(this).next('.inhalt').toggle();
			});
	*/
	
	$('.container_rechts .box .titel').css('cursor','pointer').toggle(
		function(){
			$(this).next('.inhalt').hide();
			$(this).prepend('<img src="/fileadmin/templates/site/img/container_rechts/box_titel_img_down.gif" alt="Ausklappen">');
		},
		function(){
			$(this).next('.inhalt').show();
			$(this).prepend('<img src="/fileadmin/templates/site/img/container_rechts/box_titel_img_up.gif" alt="Einklappen">');
		}
		
	);
	
});
