/* Marklandindustries.com
   Author: Ryan Bubinski, 2009.
*/

$(window).load(function () {
  setupZoom()
});

clearForm = function(ele) {
    $("#" + ele).find(':input').each(function() {
        switch(this.type) {
            case 'password':
            case 'select-multiple':
            case 'select-one':
            case 'text':
            case 'textarea':
                $(this).val('');
                break;
            case 'checkbox':
            case 'radio':
                this.checked = false;
        }
    });
}
