$(document).ready(function(){

	/* add some classes to elements for IE6 support */
	$("input").each(function (i) {
		$(this).addClass(this.type);
	});

});


