jQuery(document).ready(function() {
	
});

function changeFormValue(thisForm, thisValue, thisStatus) {
	var thisValNow = thisForm.value;
	if(thisStatus=='0') {
		if(thisValNow==thisValue) {
			thisForm.value = '';
		}
	} else {
		if(thisValNow=='') {
			thisForm.value = thisValue;
		}
	}
	return true;
}

function showAccContent(nr) {
	if (jQuery("#accContent"+nr).is(":hidden")) {
        jQuery("#accContent"+nr).slideDown();
		jQuery("#accHead"+nr).css({ "backgroundImage":"url(/root/img/bt_acc_minus.gif)", "backgroundColor":"#FBE5BF", "color":"#F29400" });
	} else {
        jQuery("#accContent"+nr).slideUp();
        jQuery("#accHead"+nr).css({ "backgroundImage":"url(/root/img/bt_acc_plus.gif)", "backgroundColor":"#E1E3E5", "color":"#666666" });
	}
};