/**
 * @fileOverview Enables Enhancements
 * @version 0.1
 * @author Michael Schieben <michael@twoantennas.com> 
 */

/*jslint nomen: true, debug: true, evil: false, onevar: false, browser: true, plusplus: false, undef: true */
/*global window: true, KfW: true, jQuery: true */

(function ($) {
	
	function Enhancment() {
		$('body').addClass('has-js').addClass($('#main-wrapper').attr('class'));
	}
	
	KfW.addInitializer(Enhancment);
	
}(jQuery));
