/**
 * Define main object class for Bragnet
 *
*/
if (typeof BN == 'undefined') {
	var BN = {};
}

/**
 * Create HTML5 Dom nodes in IE browser to support HTML5
 *
*/
BN.addHTML5 = function() {
	if (navigator.userAgent.toLowerCase().match('msie')) {
		var nodes = ('abbr article aside audio canvas details figcaption figure footer header hgroup mark meter nav output progress section summary time video').split(' ');
		for (var i in nodes) {
			document.createElement(nodes[i]);
		}
	}
}();
