$(function() {
	$("#daserver").change(function () { $('#dalogin').attr( "action", $(this).val() ); });
	$("#wmserver").change(function () { $('#wmlogin').attr( "action", $(this).val() ); });
	
	$(".clearfield").click(function() { $(this).val(""); });
	
	//Startsidan
	$(".box-general").click(function() { window.location.replace( $(this).find("a").attr("href") ); });
	
	$(".kp").click(function (){
		$(this).removeClass("kpoff");
		$(this).addClass("kpon");
		$(".wm").removeClass("wmon");
		$(".wm").addClass("wmoff");
		
		$(".wmform").hide();
		$(".kpform").show();
	});
	$(".wm").click(function (){
		$(this).removeClass("wmoff");
		$(this).addClass("wmon");
		$(".kp").removeClass("kpon");
		$(".kp").addClass("kpoff");
		
		$(".kpform").hide();
		$(".wmform").show();
	});
	
	$(".box-general").mouseenter(function (){
		$(this).addClass("box-general-on");
	}).mouseleave(function(){
		$(this).removeClass("box-general-on");
	});
});
