//jQuery

function setFocus(){
	document.kontaktformular.fullname.focus();
}
function setFocus2(){
	document.kontaktformular.betreff.focus();
}
function setFocusAdmin(){
	document.loginForm.username.focus();
}


$(document).ready(function(){ //document ready
	
	$(".jQ_navi").mouseover(function(){
		var naviName = $(this).html().toLowerCase();
		$(this).css("background-image","url(images/navi_" + naviName + "_h.png)");
		$(this).css("color","#000");
		$(this).animate({ 
		    fontSize: "20px",
		
		  }, 200 );
	});
	$(".jQ_navi").mouseout(function(){
		var naviName = $(this).html().toLowerCase();
		$(this).css("background-image","url(images/navi_" + naviName + ".png)");
		$(this).css("color","#333");
		$(this).animate({ 
		    fontSize: "14px",

		  }, 200 );
	});
	
	/*
	$(".jQ_FbTwXi").mouseover(function(){
		$(this).animate({
			top: "-20px",
			paddingBottom: "4px",
		  }, 100 );
	});
	$(".jQ_FbTwXi").mouseout(function(){
		$(this).animate({
			top: "-16px",
			paddingBottom: "0px",
		  }, 100 );
	});
	*/
}); //document ready
