$.ns('nflcs.gbl.iwov', {
	max_width_reset : function(divs)
	{
		var iwcomps,
			maxWidth,
			currentDivWidth,
			iwWidth;
		
		$(divs).each(function(){
			currentDivWidth = $(this).width();
		
			//if width already set do nothing
			//if($(divs[i]).css("width") != "") return;
			
			iwcomps = $(this).find(".iw_component");
			
			if( iwcomps.length > 1)
			{
				maxWidth = 0;
				$(iwcomps).each(function(){

					iwWidth = $(this).width();
					if (iwWidth > maxWidth) maxWidth = iwWidth;
				});

				if(currentDivWidth > maxWidth){
					$(this).css({"width": maxWidth+"px", "position":"relative", "zoom":"1"});
				}
			}			
		});
	
	}

});
		
$(document).ready(function() {

		if($.browser.msie) nflcs.gbl.iwov.max_width_reset($("div.iw_component").parent());
});
