// DER DOLLE

jQuery(document).ready(function($){	
	$("form fieldset .type-text,form fieldset .type-select,form fieldset .type-check,form fieldset .type-button,form fieldset .type-link,form fieldset .type-upload,form fieldset .type-check-table").each(
		function() {
			if ( $(this).find("label").length > 0 ) {
				var title = $(this).find("label").attr("title");
				$(this).prepend( "<div class='pic-help-text message' style='display:none;'>" + title + "</div>" );
			}
		});
	$("a#pic-helper-link").show().addClass( "off" ).text("Hilfe einschalten").closest("form").addClass("pic-helper");
	$("a#pic-helper-link").click(function(){
		if ( $(this).hasClass( "off" ) ) {
			$(this).removeClass( "off" ).addClass( "on" ).text("Hilfe ausschalten").attr("title","Die Hilfe ist momentan eingeschaltet.");
			$(".pic-helper .pic-help-text").show();
		} else {
			$(this).removeClass( "on" ).addClass( "off" ).text("Hilfe einschalten").attr("title","Die Hilfe ist momentan ausgeschaltet.");
			$(".pic-helper .pic-help-text").hide();
		}
		return false;
	});
});