// SECONDARY NAV //
$(document).ready(function(){
	$("#WNHeader").after(secNav);
	$("#sec_nav").css({
		"position": "relative",
		"font-size": "12px",
		"font-weight": "bold",
		"font-family": "arial, sans-serif",
		"color": "#585d6b",
		"width": "980px",
		"background": "#202739",
		"border-bottom": "1px solid #656b76",
		//"background-image" : "url(http://kfda.images.worldnow.com/images/296520_G.jpg)",
		"padding": "8px 0px",
		"display": "none"
	});
	var secNavContents = "";
	for(ii=0;ii<secNavArray.length;ii++){
		secNavContents += secNavArray[ii];
	}
	$("#sec_nav").append(secNavContents);
	$("#sec_nav a").css({
		"color": "#ffffff",
		"text-decoration": "none",
		"padding": "0px 10px"
	});
	$("#sec_nav a").mouseover(function(){
		$(this).attr("title",$(this).html())
		$(this).css({
			"text-decoration": "underline"
		});
	});
	$("#sec_nav a").mouseout(function(){
		$(this).css({
			"text-decoration": "none",
			"background" : "none"
		});
	});
	$("#sec_nav").show();
});
var secNav = "<div id='sec_nav'></div>";

var secNavArray = new Array();
secNavArray[0] = "<a href='http://www.newschannel6now.com/category/221700/expertconnections'>Expert Connections</a> | ";
secNavArray[1] = "<a href='http://www.telemundotexoma.com' target='_blank'>Telemundo Texoma</a>";


$wn(window).load(function(){
	var pageTimer = setTimeout("location.reload(true)", 600000); 
});

