$.ns('nflcs.gbl.iwov', {
	max_width_reset : function(divs)
	{
		var iwcomps;
		var max_width;
		
		for (var i = 0; i < divs.length; i++) {
			
			iwcomps = $(divs[i]).children("div.iw_component");
			
			if( iwcomps.length > 1)
			{
				max_width = 0;
				for(var x = 0; x < iwcomps.length; x++)
				{
					iw_width = $(iwcomps[x]).width();
					if (iw_width > max_width) max_width = iw_width;
				}
	
				$(divs[i]).css({"width": max_width+"px", "position":"relative", "zoom":"1"});
			}
			
			
		}
	
	}

});
		
$(document).ready(function() {

		if($.browser.msie && $("#element1").length == 0) nflcs.gbl.iwov.max_width_reset($("div.iw_component:first-child").parent());

});
