var $jQ = jQuery.noConflict();

window.onload = function() {
	var widthfill=0;
	var widthnav_secundario=0;
	var widthnav_secundario_li=0;
	
	widthnav_secundario=jQuery('.style_f1 #nav_secundario').outerWidth();
	jQuery('.style_f1 #nav_secundario li').not('.tofill').each(
			function(){
				widthnav_secundario_li+=jQuery(this).outerWidth(true);
			}
		);
	if(jQuery.browser.msie && jQuery.browser.version == 7) 
		widthnav_secundario_li+=30; //Separacion logo
	else if(jQuery.browser.msie && jQuery.browser.version == 6)
		widthnav_secundario_li+=jQuery('.style_f1 #nav_secundario li.sf1_link a').outerWidth(true)+60;
	jQuery('.style_f1 #nav_secundario .tofill').css('width', ((widthnav_secundario -widthnav_secundario_li)));
	
	
	widthfill=0;
	widthnav_secundario=0;
	widthnav_secundario_li=0;
	
	widthnav_secundario=jQuery('.style_futbol #nav_secundario').outerWidth();
	jQuery('.style_futbol #nav_secundario li').not('.tofill').each(
			function(){
				widthnav_secundario_li+=jQuery(this).outerWidth(true);
			}
		);
	if(jQuery.browser.msie && jQuery.browser.version <= 6 ) widthnav_secundario_li+=10;
	jQuery('.style_futbol #nav_secundario .tofill').css('width', (widthnav_secundario-widthnav_secundario_li));
	
	
	widthfill=0;
	widthnav_secundario=0;
	widthnav_secundario_li=0;
	
	widthnav_secundario=jQuery('.style_sd #nav_secundario').outerWidth();
	jQuery('.style_sd #nav_secundario li').not('.tofill').each(
			function(){
				widthnav_secundario_li+=jQuery(this).outerWidth();
			}
		);
	jQuery('.style_sd #nav_secundario .tofill').css('width', ((widthnav_secundario -widthnav_secundario_li)/2));
};