// JavaScript Document


// add class to input types

$(function() {
    $('input').each(function() {
        $(this).addClass(this.type);
    });
});



