// -------------------------------------------------
// flash
// -------------------------------------------------

function FL_CloseFlash() {
	return CL_removePopup();
}

// ------------------------------------------
// contact form
// ------------------------------------------

var cu_children;
var cu_childControls = new Array();
var cu_isPostback = false;

function cu_showHideChildren() {
	var row = MM_findObj(cu_childControls[0]);

	if (cu_children && row) {
		var index = cu_children.selectedIndex;

		for (var i = 1; i < cu_childControls.length; i++) {
			var item = MM_findObj(cu_childControls[i]);
			if (item) {
				var cssClass = item.value == '' && cu_isPostback ? 'textinput2' : 'textinput';
				item.className = index >= i ? cssClass : 'hidden';
			}
		}
		row.className = index > 0 ? '' : 'hidden';
	}
}

function cu_registerChildren(id) {
	cu_children = MM_findObj(id);
}



$("#ExpressanfrageBox2").ready(function() {

   if (readCookie("cookieBox") == "none") {
      $("#ExpressanfrageBox2").css("display", "none");
   }
});

$(document).ready(function() {

   $("#ImageQuickRequest").click(function() {
      $("#ExpressanfrageBox2").slideToggle("slow", function() {
      createCookie("cookieBox", $("#ExpressanfrageBox2").css("display"), 1);
      });
   });

});
