$(document).ready(function(){
	//Form inputs only need id's specified
	$(":input").each(function(){
		$(this).attr("name", $(this).attr("id"));
	});
});
