/*
 * AutoClearfixer v0.1
 * 
 * 2009 DAICHIFIVE
 * http://blog.daichifive.com/
 *
 * licensed under the MIT licenses.
 */

jQuery(document).ready(function(){
	jQuery("body * *").each(function(){
		if (jQuery(this).css("float") != "none") {
			jQuery(this).parent().addClass("clearfix");
		}
	});
});

