function clearText(_1){
if(_1.defaultValue==_1.value){
_1.value="";
}
}
function replaceText(_2){
if(_2.value==""){
_2.value=_2.defaultValue;
}
}
$(document).ready(function() {
	// defuscate email addresse within the content, hidden from bots
	$(".obfuscated").defuscate();
	// activate yav based validation
	$("#enewsSm").yav();
	$("#fdbkFrm").yav();
	// fix transparency problem in IE6
	$("#lLogo, div.lEl, div.lEl ul, div.lEl div, div.lEl img.lElFoot").ifixpng();
	// extend right column if it is shorter than the left column
	var lH = $("#lCol").height();
	var rH = $("#rCol").height();
	function resetCols() {
		if (lH > rH) {
			var lHp = lH + 80;
			var lHpS = lHp.toString() + "px";
			$("#rCol").css("height", lHpS);
		} else {
			return false;
		}
	}
	resetCols();
	// animate in and out the browse box at the top
	$("#browseBox").hide();
	$("#browse").click(function () {
		$("#browseBox").slideToggle("fast");
		return false;
	});
	$("#container:has(#rColIndx)").addClass("contIndx");
});