$(document).ready(function () {
	$(".makeBlue").hover( 
		function() {
			$(this).css("color","#3A75C4") },
		function(){ 
			$(this).removeAttr("style") 
		}
	)
	$("#tx-indexedsearch-searchbox-sword").click (
		function() {
			$(this).attr("value","");
		}
	)
	$("#inputButton").click(function() {
		var strName = document.LoginScript.name.value;
		var strPass = document.LoginScript.password.value;
		$.ajax({
      type: "POST",
      url: "/44",
      data: "name="+strName+"&password="+strPass,
      complete : function(  ){
        $("#LoginForm").submit();
      }
    })
  });
	$("#inputButton").keydown(function() {
		var strName = document.LoginScript.name.value;
		var strPass = document.LoginScript.password.value;
		$.ajax({
      type: "POST",
      url: "/44",
      data: "name="+strName+"&password="+strPass,
      complete : function(  ) {
       $("#LoginForm").submit();
      }
    })
	});
});