
/**
 * DYNJSLOADER including "fileadmin/templates/js/final.js"
 *   size 928 bytes
 */
$(document).ready(function(){

	$('.navi_level3 li, .navi_level2 li').hover(function(){
	    if (!$(this).hasClass('act')) $(this).css('background', '#d7e9bb');
	},function(){
	    if (!$(this).hasClass('act')) $(this).css('background', '#ffffff');
	});

});

function hideSearchText(defaultLabel) {
	if (document.getElementById('tx_indexedsearch_sword').value == defaultLabel) {
		document.getElementById('tx_indexedsearch_sword').value='';
	}
}

function changeSFurl(sbox,lang) {
	t = sbox.options[sbox.selectedIndex].value;
	document.forms["tx_indexedsearch"].action=t+".0.html?L="+lang;
	//alert(document.forms["tx_indexedsearch"].action);
}

function hideUserText() {
	if (document.loginform.user.value == 'Username') {
		document.loginform.user.value='';
	}
}
function switchPassFields() {
	document.loginform.dummy.style.display='none';
	document.loginform.pass.style.display='inline';
	document.loginform.pass.focus();
}



