/* Some global JS functions ... */

// Auto-Hide and Show Boxes ------------------------------------
$(window).ready(function () {
	$("a.addtext").click(function () {
		openName=$(this).attr("rel");
		if ($(openName).css("display")=="none") {
			$(openName).show("slow");
			$(this).children('h3').css("background-image", "url(/tl_files/roedel_umzuege/tpl_images/arrow_bottom.gif)");
		}
		else {
			$(openName).hide("slow");
			$(this).children('h3').css("background-image", "url(/tl_files/roedel_umzuege/tpl_images/arrow_right.gif)")
		}
	});
	$("div.addtext").hide();
	$("a.addtext").children('h3').css("background-image", "url(/tl_files/roedel_umzuege/tpl_images/arrow_right.gif)")
	$("div#description").show(1000);
	$("div#particular").show(1000);
	$("h3#first").css("background-image", "url(/tl_files/roedel_umzuege/tpl_images/arrow_bottom.gif)");
	$("h3#part").css("background-image", "url(/tl_files/roedel_umzuege/tpl_images/arrow_bottom.gif)");
	
	$("div.error").html("Bitte ausfüllen!")
});
