$(function(){
    var arraySubmitButtons = $("input[type=submit]").get();
    $(arraySubmitButtons).each(function(){
        $(this).addClass("submitbutton");
    });
    var arrayTextInput = $("input[type=text]").get();
    $(arrayTextInput).each(function(){
        $(this).addClass("textinput");
    });
	var arrayPasswordInput = $("input[type=password]").get();
    $(arrayPasswordInput).each(function(){
        $(this).addClass("textinput");
    });
	
	$("#header_mid").click(function(){
		window.location = "/";
	});
});

