document.write('
| '; _t += ' | ';
_t += ' ';
_t += '';
_t += ' ';
_t += ' | ';
_t += ''; _t += ' | ||||||||||||||
| '; writeString += ' | ';
if (navigator.appName.indexOf('WebTV') != -1) {
document.write('');
} else {
writeString += ' ';
writeString += ' ';
writeString += '
';
writeString += ' ';
writeString += '';
document.write(writeString);
}
document.write('');
/* Begin: MSN search header (FSCOM-4763) */
/////////////////////////////////////////////////////////////////////////////////
//
// File: base.js
// Defines:
// Dependencies:
// Description: this is the base framework module. This must be the first JS
// file; all other framework files depend on the prototypes defined
// within.
//
// Copyright (c) 2006 by Microsoft Corporation. All rights reserved.
//
/////////////////////////////////////////////////////////////////////////////////
Function.prototype.addMethod = function(name,func)
{
// if the function doesn't already exist
if ( !this.prototype[name] )
{
// add it now
this.prototype[name] = func;
}
// return this to allow chaining
return this;
};
Function.addMethod("as", function(ns,isSingleton)
{
// split the namespace string on the periods
var chain = (ns ? ns.split('.') : []);
// if the array is empty, then nothing to do
if ( chain.length > 0 )
{
// the root is the window object
var base = window;
// start with the first stop with the second-to-last portion
// in the namespace chain
for(var ndx = 0; ndx < chain.length - 1; ++ndx)
{
// the token should not be empty -- skip it if it is
var token = chain[ndx];
if ( token )
{
// if the namespace object for this token doesn't
// already exist, then we need to create it now
if ( !base[token] )
{
// make it an empty object
base[token] = {};
}
// walk down the chain
base = base[token];
}
}
// the last namespace in the chain is a new instance
// of this object
base[chain.last()] = (isSingleton ? new this() : this);
}
return this;
});
Function.addMethod("ns",function(ns)
{
// just define this function as the namespace, but as a singleton
// (just a shortcut for readability purposes)
this.as(ns,1);
});
String.addMethod("trim",function()
{
// trim off all leading and trailing spaces
return this.replace(/^\s*(\S*(\s+\S+)*)\s*$/,"$1");
});
String.addMethod("collapse", function()
{
// trim off all leading and trailing spaces, and collapse all instances
// of whitespace to a single space character
return this.replace(/\s+/g,' ').trim();
});
String.addMethod("wrap", function(delim)
{
// return the text wrapped in the delimeter
var close, delims = {"(":")", "{":"}", "[":"]", "<":">", "«":"»", "‹":"›", "“":"”", "‘":"’"};
if ( delims[delim] )
{
close = delims[delim];
}
else
{
var m = (/^<(\w+)(\s+\w+\s*=\s*"[^"]*")*\s*>$/).exec( delim );
if ( m )
{
close = "" + m[1] + ">";
}
}
return delim + this + (close ? close : delim);
});
String.addMethod("format",function()
{
// use this string as the format
var fmt = this;
// walk through each argument passed in
for(var ndx=0; ndx < arguments.length; ++ndx)
{
// replace {0} with argument[0], {1} with argument[1], etc.
fmt = fmt.replace( new RegExp('\\{' + ndx + '\\}',"g"), arguments[ndx] );
}
// return the formatted string
return fmt;
});
String.addMethod("encodeHtml",function()
{
var returnString = this.replace(/\>/g, ">").replace(/\").replace(/</g, "<").replace(/&/g, "&").replace(/'/g, "'").replace(/"/g, '"');
return returnString;
});
String.addMethod("encodeURIComponent",function() {
return (typeof encodeURIComponent != "undefined" ? encodeURIComponent(this) : escape(this));
});
String.addMethod("decodeURIComponent",function() {
return (typeof decodeURIComponent != "undefined" ? decodeURIComponent(this) : unescape(this));
});
Array.addMethod("last",function()
{
// return the last element in the array,
// or "undefined" if the array is empty
return (this.length > 0 ? this[this.length-1] : void(0));
});
Array.addMethod("remove",function(obj)
{
// walk backwards because we might be removing items
for(var ndx=this.length-1; ndx >= 0; --ndx)
{
// if this element is the same as the argument...
if ( this[ndx] === obj )
{
// splice it out now
this.splice(ndx, 1);
}
}
return this;
});
Array.addMethod("contains", function(obj)
{
// walk all the items in the array
for(var ndx=0; ndx < this.length; ++ndx)
{
// check to see if this item is the exact same (no conversion)
// as the object passed to us
if ( this[ndx] === obj )
{
// we can bail as soon as we find it
return 1;
}
}
// if we get here, we didn't find it
return 0;
});
// these methods are typically already defined on more-recent browsers
// but we'll try to add them in case this is an older browser that doesn't
// support them (since we use them).
// examples are IE 5.0 or earlier, IE for the Mac, etc.
Array.addMethod("push",function(obj)
{
// add the object to the end of the array
this[this.length] = obj;
// return the new array length
return this.length;
});
Array.addMethod("shift",function()
{
// splice returns an array of the deleted items, so delete one item
// from the head, and return the one element in the returned array
return this.splice(0,1)[0];
});
Array.addMethod("splice",function(start,delCount)
{
// we might be adding new elements -- calculate how many were passed in (if any)
var delta;
var addCount = arguments.length - 2;
// verify some values based on the length of the array
// can't start past the end of the array
if ( start > this.length )
{
start = this.length;
}
// can't delete more items than we have
if ( start + delCount > this.length )
{
delCount = this.length - start;
}
// create the array of deleted items (if any)
var deleted = [];
for(var ndx = 0; ndx < delCount; ++ndx)
{
deleted.push(this[start+ndx]);
}
if ( addCount > delCount )
{
// have to push out elements to make room for added items
delta = addCount - delCount;
for(ndx = this.length + delta - 1; ndx >= start + delta; --ndx)
{
this[ndx] = this[ndx - delta];
}
// don't have to adjust the length when adding -- gets done
// automatically by adding items beyond the old length
}
else if ( addCount < delCount )
{
// pushing in elements because more deleted than added
delta = delCount - addCount;
for(ndx = start + addCount; ndx < this.length - delta; ++ndx)
{
this[ndx] = this[ndx + delta];
}
// delete the excess items starting where we left off
for(; ndx < this.length - 1; ++ndx)
{
delete this[ndx];
}
// adjust the length
this.length -= delta;
}
// if we're adding items, add them now
for(ndx = 0; ndx < addCount; ++ndx )
{
this[start+ndx] = arguments[2+ndx];
}
return deleted;
});
/////////////////////////////////////////////////////////////////////////////////
//
// File: dom.js
// Defines: Msn.DOM
// Dependencies: base.js
// Description: implements framework DOM functionality. Common DOM-walking
// methods and event hooking.
//
// Copyright (c) 2006 by Microsoft Corporation. All rights reserved.
//
/////////////////////////////////////////////////////////////////////////////////
(function()
{
// shortcut
var dom = this;
Function.addMethod("hook",function(element,eventName)
{
if ( element )
{
var isSafari = checkSafari();
if ( !isSafari && element.addEventListener )
{
// if the browser supports the w3c model, use it
element.addEventListener( eventName, this, false );
}
else if ( !isSafari && element.attachEvent )
{
// if the browser supports the IE model, use it
element.attachEvent( 'on' + eventName, this );
}
else
{
// normally we'd just assign to "on"+eventName, but let's try
// to fake it by setting up an array of event handlers as a property
// on the element. Then we'll set the real event handler to a function
// that walks that array, calling each of the handlers. If any of the handlers
// returns false, we stop walking and return false. Otherwise we'll return true.
//
// see if there's already an event handler for this event
var handlers = element["x"+eventName];
if ( handlers && handlers.constructor == Array )
{
// yes -- add this new function to the list if it isn't already
if ( handlers.contains(this) )
{
// already there -- null the handler variable so we do nothing
handlers = null;
}
else
{
// add it
handlers.push(this);
}
}
else
{
// no -- create a new array with this function as the only item
handlers = element["x"+eventName] = [this];
}
if ( handlers )
{
// set the real handler to be a custom function
element['on' + eventName] = function(ev)
{
var returnValue = true;
// the event object
ev = dom.Event(ev);
// walk the array
for(var ndx=0; ndx < handlers.length; ++ndx)
{
// call the handler
var handlerReturn = handlers[ndx](ev);
if ( typeof handlerReturn != "undefined" && !handlerReturn )
{
// return false to cancel the event and stop calling handlers
returnValue = false;
}
}
// everything was fine and dandy
return returnValue;
};
// the above closure will leak memory under IE.
// null out the element reference and the leak won't happen.
element = null;
}
}
}
return this;
});
Function.addMethod("unhook",function(element,eventName)
{
if ( element )
{
var isSafari = checkSafari();
if ( !isSafari && element.removeEventListener )
{
// if the browser supports the w3c model, use it
element.removeEventListener( eventName, this, false );
}
else if ( !isSafari && element.detachEvent )
{
// if the browser supports the IE model, use it
element.detachEvent( 'on' + eventName, this );
}
else
{
// see if we've set up an array of handlers on a property of this element
var arr = element["x"+eventName];
if ( arr && arr.constructor == Array )
{
// remove this function from the array
arr.remove( this );
}
else
{
// just set the handler to be null, just in case
element["on"+eventName] = null;
}
}
}
return this;
});
// call this method in your handlers in order to cancel an event
// and prevent bubbling
dom.CancelEvent = function( ev )
{
// if no event is passed, pull the event from the window object
ev = dom.Event(ev);
if ( ev )
{
// this cancels the bubble in order to prevent the
// event from bubbling up the dom chain
// (eg: OOB script won't log link click)
ev.cancelBubble = true;
if ( ev.stopPropagation )
{
ev.stopPropagation();
}
// this sets the return value to false and stops the
// default action from occurring
// (eg: clicks on links won't navigate)
ev.returnValue = false;
if ( ev.preventDefault )
{
ev.preventDefault();
}
}
// return false in case we want to use in an onclick property
return false;
};
// this function is pretty easily coded, but once it's crunched, it
// will actually save a few bytes for every time it's used.
dom.Event = function(ev)
{
return (ev ? ev : window.event);
};
// this function is a shortcut for getting the browser-independent
// source element from the event
dom.Target = function(ev)
{
// typically this is done in the calling code, but just in case...
ev = dom.Event(ev);
// get the browser-independent target property
var target = (ev.target ? ev.target : ev.srcElement);
// some browsers (like Safari) might give us the actual text element
// that was clicked. But we want to return an element, so if the
// target isn't an element...
if( target && target.nodeType != 1 )
{
// get the first parent element from the tree
target = dom.ParentElem( target );
}
return target;
};
// browser-neutral innerText method.
// if the browser supports the innerText property, return it;
// otherwise calculate the inner text by walking the dom nodes.
dom.InnerText = function( el )
{
var text = '';
//for each child of the node
for (var ndx=0 ; ndx < el.childNodes.length; ndx++)
{
var child = el.childNodes[ndx];
if (child.nodeType == 1)
{
// recurse child element nodes, adding their text to the string we're building
text += dom.InnerText(child);
}
else if (child.nodeType == 3)
{
// just add the value of the text nodes to the string we're building
text += child.data;
}
}
return text;
};
// given an element, returns the next sibling element in the dom,
// or null if there is none
// if tagName is specified, it will keep looking until it finds an element of that tag name
dom.NextElem = function( element, tagName )
{
var nextElement = element.nextSibling;
while( nextElement && (nextElement.nodeType != 1 || (tagName && nextElement.nodeName != tagName)) )
{
nextElement = nextElement.nextSibling;
}
return nextElement;
};
// given an element, returns the previous sibling element in the dom,
// or null if there is none
// if tagName is specified, it will keep looking until it finds an element of that tag name
dom.PrevElem = function( element, tagName )
{
var prevElement = element.previousSibling;
while( prevElement && (prevElement.nodeType != 1 || (tagName && prevElement.nodeName != tagName)) )
{
prevElement = prevElement.previousSibling;
}
return prevElement;
};
// get the fist element up the dom tree from element.
// if tagName is specified, it will keep looking until it finds an element of that tag name
dom.ParentElem = function( element, tagName )
{
var parentNode = element.parentNode;
while( parentNode && (parentNode.nodeType != 1 || (tagName && parentNode.nodeName != tagName)) )
{
parentNode = parentNode.parentNode;
}
return parentNode;
};
// get the first child element under node parentNode.
// if optional parameter, tagName, is specified, keep looking
// until we find the first child with that tag name
// if immediate is non-zero, only the immediate children are checked
dom.ChildElem = function( parentNode, tagName, immediate )
{
var element = null, childNode;
// check all our child elements
for(var ndx=0; !element && ndx < parentNode.childNodes.length; ++ndx)
{
childNode = parentNode.childNodes[ndx];
if ( childNode.nodeType == 1 )
{
// child is an element. if we are not looking for a particular tag name,
// or if we are and they match, then we are done
if ( !tagName || childNode.nodeName == tagName )
{
// save this element and pop out of the recursion
element = childNode;
}
}
}
if ( !immediate )
{
// now recurse each of the children if we haven't found anything yet
for(ndx=0; !element && ndx < parentNode.childNodes.length; ++ndx)
{
// check to make sure it's an element
childNode = parentNode.childNodes[ndx];
if ( childNode.nodeType == 1 )
{
// it is -- recurse it
element = dom.ChildElem( childNode, tagName );
}
}
}
return element;
};
// for each immediate child of the parent node
// (optionally only those with the supplied tag name),
// call the function provided, passing in the node as the parameter
dom.ForEach = function( func, parent, tagName )
{
for(var ndx = 0; ndx < parent.childNodes.length; ++ndx)
{
var child = parent.childNodes[ndx];
if ( child.nodeType == 1 && (!tagName || child.nodeName == tagName) )
{
if ( func( child ) )
{
break;
}
}
}
};
// returns the number of child elements for the given node
// if nodeName is supplied, it will only count those child nodes with the given name
// returns the new className for the element
dom.ChildCount = function( element, nodeName )
{
var count = 0;
var ndx,child;
for(ndx=0; ndx < element.childNodes.length; ++ndx)
{
child = element.childNodes[ndx];
count += (child.nodeType == 1 && (!nodeName || child.nodeName == nodeName) ? 1 : 0);
}
return count;
}
// add the specified class name to the element's list of classes
// if it isn't already there
dom.AddClass = function( element, className )
{
// get the current classes
var originalValue = element.className;
if ( originalValue )
{
// split on spaces (after collapsing all the whitespace)
var originalClasses = originalValue.collapse().split(' ');
var newClasses = className.collapse().split(' ');
for( var ndx = 0; ndx < newClasses.length; ++ndx )
{
var newClass = newClasses[ndx];
// if the array doesn't contain the given class name...
if ( !originalClasses.contains( newClass ) )
{
// add it to the end
element.className += ' ' + newClass;
}
}
}
else
{
// nothing there now -- just set the new one
element.className = className;
}
return element.className;
};
// if the element has a class name in its class list, remove it.
// returns the new className for the element
dom.DelClass = function( element, className )
{
// get the current classes
var originalValue = element.className;
// if it's blank, there's nothing to do
if ( originalValue )
{
// collapse all the whitespace, split on the space, and remove
// the given class name from the array (if it exists)
var classes = originalValue.collapse().split(' ');
var oldClasses = className.collapse().split(' ');
for(var ndx = 0; ndx < oldClasses.length; ++ndx)
{
classes.remove( oldClasses[ndx] );
}
// caluclate the new value, separated with a space
var newValue = classes.join(' ');
// if the newvalue is different from the original value...
if ( newValue != originalValue )
{
// change it
element.className = newValue;
}
}
return element.className;
};
// returns true if the element has the given className in its list
dom.HasClass = function( element, className )
{
return element.className.collapse().split(' ').contains( className );
};
// call this function whenever you update the DOM.
// This function expects some other code to add an Impl function
// to it for a site-specific implementation of accessibility notification.
// This method is mainly provided as a stub that is always present, but can
// use multiple implmentations for specific sites in the future, while allowing
// other code to remain unchanged.
dom.Updated = function()
{
// if some other code has implemented accessibility feature for the DOM...
if (dom.Access && typeof dom.Access.Updated == 'function')
{
// let's call into it
dom.Access.Updated();
}
};
function checkSafari()
{
return (navigator.userAgent.indexOf("Safari") >= 0);
}
}).ns("Msn.DOM");
/////////////////////////////////////////////////////////////////////////////////
//
// File: bind.js
// Defines: Msn.Bind
// Dependencies: base.js
// Description: framework implementation of binding.
// "bind" method can bind to an element reference, an array of
// element references, the results of getElementsByTagName, or
// a string representing a CSS selector.
//
// Copyright (c) 2006 by Microsoft Corporation. All rights reserved.
//
/////////////////////////////////////////////////////////////////////////////////
(function()
{
// shortcut
var bind = this;
// this is the binding array -- every time we create a binding, we also
// add a reference to it here. The unload event is hooked to loop through
// this array and call the dispose method (if it exists) on each binding.
var allBindings = [];
// bind an object of type, typ, to the DOM element(s) specified by
// the selector, sel.
Function.addMethod("bind",function( sel, args )
{
var elements;
switch(typeof sel)
{
case 'object':
// could be an element or an array of elements.
// if this is an element, we'll have the nodeType property and it will be 1.
// if this is the document object, we'll have a nodeType property of 9.
// if we are an element, create an array with the element as the one item.
// if we have a length property, then assume we are some sort of array
// otherwise just return null becasue we don't know what it is
elements = (sel.nodeType == 1 || sel.nodeType == 9) ? [sel] : (sel.length ? sel : null);
break;
case 'string':
// a string should be a css selector that we can
// evaluate to return an array of elements
elements = bind.Select( sel );
break;
}
if ( elements )
{
// walk each element...
for(var ndx = 0; ndx < elements.length; ++ndx)
{
var element = elements[ndx];
// create a new binding object, passing in the element we are binding to,
// and the parameters object and add the binding to our reference array
// so we can dispose of it during the unload event
var binding = new this( element, args );
if ( element.bindings )
{
element.bindings.push( binding );
}
else
{
element.bindings = [ binding ];
}
allBindings.push( binding );
}
}
return this;
});
// unbind any existing bindings from the given element, el.
// if r is true, all child elements of el are recursively unbound.
bind.Unbind = function( element, recurse )
{
var ndx;
// if there are any bindings on this element
if ( element.bindings && element.bindings.length )
{
// walk the array backwards because we might decide we
for(ndx=0; ndx < element.bindings.length; ++ndx)
{
var binding = element.bindings[ndx];
// if there is a dispose method on the binding, call it
if ( binding && typeof binding.dispose == 'function' )
{
binding.dispose();
}
// remove from the global bindings array
allBindings.remove( binding );
}
// clear the array
element.bindings = null;
}
// if we want to recursively unbind...
if( recurse )
{
// for each child node of this element...
for(ndx=0; ndx < element.childNodes.length; ++ndx)
{
var child = element.childNodes[ndx];
// if the child is an element...
if ( child.nodeType == 1 )
{
// recurse.
bind.Unbind( child, recurse );
}
}
}
};
/////////////////////////////////////////////////////////////////////////////
//
// this method takes a css-style selector and returns an array of elements
// within the DOM that satisfy that criteria.
// The selector should follow this pattern:
// selector: simpsel [ combinator? simpsel ]*
// combinator: [ '>' | '+' | ');
// comment needed to ensure esi comment does not use script error
var useFlash = "true";
var domain = "http://msn.foxsports.com";
var nsDomain = "http://msn.foxsports.com";
var showScorestrip = "true";
var jumbotronPath = "/id/8787101_15_101.swf";
var _t = '';
_t += ' ';
document.write(_t);
if (useFlash) {
e=document.getElementById("headerScoreboard");
function changeH (){
e.style.height = x;
}
var menuXml = "/name/public/FS/Jumbotron/scoresMenu";
var categoryId = "6784";
var loc="FS"; //[FS, FSW, desk]
var sectionFront = "Fox Sports Apps"; //section front name
var sectionFrontUrl = "";
var gamesUrl = "";
var isNarrow = "false";
// if (gamesUrl== domain) gamesUrl="";
var userStatus=0;
if (typeof(user)=="object" && typeof(user.USER_FIRST_NAME)!= "undefined") {
var firstName=user.USER_FIRST_NAME;
}else{
var firstName="User";
}
var promo="";
var promoUrl= "";
// if (promoUrl== nsDomain) promoUrl="";
var jtBg = "";
// if (jtBg== domain) jtBg="";
var jtBgUrl = "";
// if (jtBgUrl== domain) jtBgUrl="";
var jtScores = "";
// if (jtScores== domain) jtScores="";
var jtScoresUrl = "";
// if (jtScoresUrl== domain) jtScoresUrl="";
var adPageCode="";
var pageType="sectionFront";
var flashVars = 'domain=' + domain + '&nsDomain=' + nsDomain + '&categoryId='+categoryId+'§ionFront='+sectionFront+'§ionFrontUrl='+sectionFrontUrl+'&adPageCode='+adPageCode+'&loc='+loc;
flashVars += '&firstName='+firstName +'&userStatus='+userStatus+'&menuXml='+menuXml+'&gamesUrl='+gamesUrl;
// flashVars += '&login=/login&logout=/logout&customize=/prefs®ister=/register';
flashVars += '&promo='+promo+'&promoUrl='+promoUrl;
flashVars += '&jtBg='+jtBg+'&jtBgUrl='+jtBgUrl+'&jtScores='+jtScores+'&jtScoresUrl='+jtScoresUrl;
flashVars += '&pageType='+pageType+'&isNarrow='+isNarrow;
// if (typeof(myTeams)!="undefined") flashVars += '&myTeams='+myTeams;
document.write('');
}
else {
document.write(' ');
// false Broswer detection - these must be consistent on every page. make sure the old script file has the same variables.
var NS4 = (document.layers) ? 1 : 0;
var IE4 = ((document.all) && (!document.getElementById)) ? 1 : 0;
var IE5 = ((document.all) && (!document.fireEvent) && (!window.opera)) ? 1 : 0;
var DOM = (document.getElementById) ? 1 : 0; // ns6+ and ie5+ and mozilla
var NS6 = ((!document.all) && (document.getElementById)) ? 1 : 0; // ns6+ and mozilla, not ie6
var IE = (navigator.appName == "Microsoft Internet Explorer") ? 1 : 0;
var PC = (navigator.platform == "Win32") ? 1 : 0;
var MAC = ((navigator.appVersion.indexOf("PPC") >0) || (navigator.appVersion.indexOf("Mac") >0)) ? 1 : 0;
// ********************************* nav functions ***************************************
var isOver = false; var isOverChild = false;
var timer = null; var timerChild = null;
var ddTop = 0;
var ddLeft = 0;
var myObject;
function Initms() {
for (i = 0; i < tt.length; i++) { // set m properties
var ff = eval("nav_" + tt[i][1]);
w_m = "gn" + tt[i][1];
w_m = document.getElementById(w_m);
if (tt[i][0] == 1) { // parent ms
w_m.isChildm = 0;
w_m.onmouseover = Overm;
w_m.onmouseout = Outm;
w_m.categoryId = tt[i][1];
for ( j = 0 ; j < ff.length ; j++ ) {
w_mItem = "nav_" + tt[i][1] + "_" + j;
w_mItem = document.getElementById(w_mItem);
w_mItem.onmouseover = OvermEl;
w_mItem.onmouseout = OutmEl;
if (ff[j][2]) w_mItem.childm = ff[j][3];
w_mItem.destination = ff[j][0];
w_mItem.newWin = ff[j][2];
w_mItem.w_Class = "dd";
w_mItem.onclick = LinkingPage;
}
}
else { //child ms
w_m.isChildm = 1;
w_m.onmouseover = OverChildm;
w_m.onmouseout = OutChildm;
for ( j = 0 ; j < ff.length ; j++ ) {
w_mItem = "nav_" + tt[i][1] + "_" + j;
w_mItem = document.getElementById(w_mItem);
w_mItem.onmouseover = OverChildmEl;
w_mItem.onmouseout = OutChildmEl;
w_mItem.destination = ff[j][0];
w_mItem.newWin = ff[j][2];
w_mItem.w_Class = "dd";
w_mItem.onclick = LinkingPage;
}
}
}
}
function ShowLayer(el) {
var showEl = "gn" + el;
if (!DOM) return;
clearTimeout(timer);
HideAllLayers();
isOver = true;
var w_El = document.getElementById(showEl);
w_Anchor = "nav_" + el;
if (document.getElementById(w_Anchor)){
myObject = document.getElementById(w_Anchor);
//ddLeft = myObject.offsetLeft;
while (myObject.offsetParent) {
ddTop += myObject.offsetTop;
ddLeft += myObject.offsetLeft;
myObject = myObject.offsetParent;
}
ddTop += 21;
ddLeft -= 1;
}
if (w_El.className == "dd1") {var w_ElWidth = 130;}
else if (w_El.className == "dd2") {var w_ElWidth = 130;}
if ((ddLeft + w_ElWidth) > document.body.clientWidth) {
ddLeft = document.body.clientWidth - w_ElWidth;
}
w_El.style.top = ddTop;
w_El.style.left = ddLeft;
ToggleSelect('hidden');
for (i = 0; i < tt.length; i++) {
w_nav = "nav_" + tt[i][1];
if (document.getElementById(w_nav)) {
w_nav = document.getElementById(w_nav);
if (w_nav.className == "navElOn") w_nav.className = "navElOnOver";
}
}
document.getElementById(w_Anchor).className = "navElOver";
w_El.style.visibility = "visible";
ddTop = 0; ddLeft = 0;
}
function ToggleSelect(visState) {
if (!IE) return;
for (i=0; i < document.all.tags('SELECT').length; i++){
var obj = document.all.tags('SELECT')[i];
if (!obj || !obj.offsetParent) continue;
obj.style.visibility = visState;
}
}
function ShowChildLayer(childm, mItem) {
var childm = "gn" + childm;
clearTimeout(timer);
HideChildLayers();
var w_El = document.getElementById(childm);
if (document.getElementById(mItem)){
var myObject = document.getElementById(mItem);
while (myObject.offsetParent) {
ddTop = ddTop + myObject.offsetTop;
ddLeft = ddLeft + myObject.offsetLeft;
myObject = myObject.offsetParent;
}
}
if (w_El.className == "dd1") {var w_ElWidth = 130;}
else if (w_El.className == "dd2") {var w_ElWidth = 130;}
if ((ddLeft + (2*w_ElWidth)) > document.body.clientWidth) {
w_El.style.top = ddTop - 2;
w_El.style.left = ddLeft - 127;
}
else {
w_El.style.top = ddTop - 2;
w_El.style.left = ddLeft + 117;
}
w_El.style.visibility = "visible";
ddTop = 0; ddLeft = 0;
}
function HideAllLayers() {
if (isOver || isOverChild) return;
for (i = 0; i < tt.length; i++) {
w_El = "gn" + tt[i][1];
w_El = document.getElementById(w_El);
w_El.style.visibility = "hidden";
w_El.style.left = -1000;
w_nav = "nav_" + tt[i][1];
if (document.getElementById(w_nav)) {
w_nav = document.getElementById(w_nav);
if (tt[i][1] != navOn) {//restore to original state
if(tt[i][1] != 2407){//this is the arcade button
w_nav.className = "navEl";
}else{
w_nav.className = "navEl2";
}
}else {
w_nav.className = "navElOn";
}
}
}
ToggleSelect('visible');
}
function HideChildLayers() {
if (isOverChild) return;
for (i = 0; i < tt.length; i++) {
if (tt[i][0] == 2) {
w_El = "gn" + tt[i][1];
w_El = document.getElementById(w_El);
w_El.style.visibility = "hidden";
}
}
}
function Overm() {
clearTimeout(timer);
isOver = true;
}
function OverChildm() {
clearTimeout(timerChild);
isOverChild = true;
}
function OutChildm() {
clearTimeout(timerChild);
isOverChild = false;
timerChild = setTimeout("HideAllLayers()",300);
}
function OvermEl() {
this.className = 'ddHigh';
this.style.cursor = 'hand';
if (this.childm || isOverChild) {
ShowChildLayer(this.childm, this.id);
}
if (!this.childm) {
HideChildLayers();
}
}
function OverChildmEl() {
this.className = 'ddHigh';
this.style.cursor = 'hand';
}
function OutmEl() {
this.className = this.w_Class;
}
function Outm() {
clearTimeout(timer);
isOver = false;
timer = setTimeout("HideAllLayers()", 300);
}
function OutChildmEl() {
this.className = this.w_Class;
}
function LinkingPage() {
var url = String(this.destination);
if (!this.newWin) {window.location.href = url;}
else {window.open(url);}
}
// **************************output main nav************************
document.write('');
// **************************output js arrays **********************
// FORMAT IS:
// [url,menu name,has child,id of child,spawn new window]
// *****************************************************************
var nav_20912 = new Array(['http://www.thefightnetwork.com','Fight Network',0,-1,1]);
var nav_2751 = new Array(['http://msn.foxsports.com/name/public/CBK/HoopsHysteria/Atlanta','Atlanta',0,-1,0],['http://msn.foxsports.com/name/public/CBK/HoopsHysteria/Minneapolis','Minneapolis',0,-1,0],['http://msn.foxsports.com/name/public/CBK/HoopsHysteria/Oakland','Oakland',0,-1,0],['http://msn.foxsports.com/name/public/CBK/HoopsHysteria/WashingtonDC','Washington DC',0,-1,0]);
var nav_177 = new Array(['http://msn.foxsports.com/soccer/england','England Home',0,-1,0],['http://msn.foxsports.com/foxsoccer/premierleague','Premier League',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishchampionship','Championship',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague1','League 1',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague2','League 2',0,-1,0],['http://msn.foxsports.com/foxsoccer/facup','FA Cup',0,-1,0],['http://msn.foxsports.com/foxsoccer/championsleague','Champions League',0,-1,0],['http://msn.foxsports.com/foxsoccer/europaleague','Europa League',0,-1,0],['http://msn.foxsports.com/foxsoccer/England/NationalTeam','England NT',0,-1,0],['http://foxsoccerpl.stats.com/','PL Fantasy',0,-1,0],['http://msn.foxsports.com/fsc/soccer/video','PL Video',0,-1,0]);
var nav_2740 = new Array(['http://msn.foxsports.com/soccer/europe','Europe Home',0,-1,0],['http://msn.foxsports.com/soccer/england','England',0,-1,0],['http://msn.foxsports.com/foxsoccer/ligue1','France',0,-1,0],['http://msn.foxsports.com/foxsoccer/bundesliga','Germany',0,-1,0],['http://msn.foxsports.com/foxsoccer/seriea','Italy',0,-1,0],['http://msn.foxsports.com/foxsoccer/eredivisie','Netherlands',0,-1,0],['http://msn.foxsports.com/foxsoccer/scottishpremierleague','Scotland',0,-1,0],['http://msn.foxsports.com/foxsoccer/laliga','Spain',0,-1,0],['http://msn.foxsports.com/foxsoccer/championsleague','Champions League',0,-1,0],['http://msn.foxsports.com/foxsoccer/europaleague','Europa League',0,-1,0]);
var nav_2741 = new Array(['http://msn.foxsports.com/soccer/latinamerica','Latin America Home',0,-1,0],['http://msn.foxsports.com/foxsoccer/mexico','Mexico',0,-1,0],['http://msn.foxsports.com/foxsoccer/libertadores','Copa Libertadores',0,-1,0],['http://msn.foxsports.com/foxsoccer/copasudamericana','Copa Sudamericana',0,-1,0]);
var nav_194 = new Array(['http://msn.foxsports.com/foxsoccer/fsctv','FSCTV',0,-1,0],['http://msn.foxsports.com/foxsoccer/tvschedule/shows','Printable Schedules',0,-1,0],['http://msn.foxsports.com/foxsoccer/tvschedule','Today's TV Listings',0,-1,0],['http://msn.foxsports.com/foxsoccer/tvschedule/weeklyListings','Weekly TV Listings',0,-1,0],['http://msn.foxsports.com/foxsoccer/tvschedule/shows','Programming Guide',0,-1,0],['http://msn.foxsports.com/soccer/fsctv/getfsc','How to Get FSC',0,-1,0],['http://msn.foxsports.com/soccer/fsctv/television/press','Press Releases',0,-1,0],['http://msn.foxsports.com/foxsoccer/fsctv/television/advertising','Advertising Profile',0,-1,0]);
var nav_195 = new Array(['http://msn.foxsports.com/soccer/usa','USA Home',0,-1,0],['http://msn.foxsports.com/foxsoccer/mls','MLS',0,-1,0],['http://foxsoccermls.stats.com/','MLS Fantasy',0,-1,0],['http://msn.foxsports.com/foxsoccer/wps','WPS',0,-1,0],['http://msn.foxsports.com/soccer/beckham','Beckham',0,-1,0],['http://msn.foxsports.com/foxsoccer/USA/MenNationalTeam','Men's NT',0,-1,0],['http://msn.foxsports.com/foxsoccer/USA/WomenNationalTeam','Women's NT',0,-1,0]);
var nav_1001 = new Array(['http://msn.foxsports.com/foxsoccer/scores','Today's Scores',0,-1,0],['http://msn.foxsports.com/foxsoccer/euro2008/scores','Euro 2008',0,-1,0],['http://msn.foxsports.com/foxsoccer/premierleague/scores','Premier League',0,-1,0],['http://msn.foxsports.com/foxsoccer/mls/scores','MLS',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishchampionship/scores','Championship',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague1/scores','League 1',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague2/scores','League 2',0,-1,0],['http://msn.foxsports.com/foxsoccer/ligue1/scores','France',0,-1,0],['http://msn.foxsports.com/foxsoccer/bundesliga/scores','Germany',0,-1,0],['http://msn.foxsports.com/foxsoccer/seriea/scores','Italy',0,-1,0],['http://msn.foxsports.com/foxsoccer/eredivisie/scores','Netherlands',0,-1,0],['http://msn.foxsports.com/foxsoccer/scottishpremierleague/scores','Scotland',0,-1,0],['http://msn.foxsports.com/foxsoccer/laliga/scores','Spain',0,-1,0],['http://msn.foxsports.com/foxsoccer/mexico/scores','Mexico',0,-1,0],['http://msn.foxsports.com/foxsoccer/libertadores/scores','Copa Libertadores',0,-1,0],['http://msn.foxsports.com/foxsoccer/copasudamericana/scores','Copa Sudamericana',0,-1,0]);
var nav_1002 = new Array(['http://msn.foxsports.com/foxsoccer/euro2008/standings','Euro 2008',0,-1,0],['http://msn.foxsports.com/foxsoccer/premierleague/standings','Premier League',0,-1,0],['http://msn.foxsports.com/foxsoccer/mls/standings','MLS',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishchampionship/standings','Championship',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague1/standings','League 1',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague2/standings','League 2',0,-1,0],['http://msn.foxsports.com/foxsoccer/ligue1/standings','France',0,-1,0],['http://msn.foxsports.com/foxsoccer/bundesliga/standings','Germany',0,-1,0],['http://msn.foxsports.com/foxsoccer/seriea/standings','Italy',0,-1,0],['http://msn.foxsports.com/foxsoccer/eredivisie/standings','Netherlands',0,-1,0],['http://msn.foxsports.com/foxsoccer/scottishpremierleague/standings','Scotland',0,-1,0],['http://msn.foxsports.com/foxsoccer/laliga/standings','Spain',0,-1,0],['http://msn.foxsports.com/foxsoccer/mexico/standings','Mexico',0,-1,0],['http://msn.foxsports.com/foxsoccer/libertadores/standings','Copa Libertadores',0,-1,0]);
var nav_1003 = new Array(['http://msn.foxsports.com/foxsoccer/euro2008/fixtures','Euro 2008',0,-1,0],['http://msn.foxsports.com/foxsoccer/premierleague/fixtures','Premier League',0,-1,0],['http://msn.foxsports.com/foxsoccer/mls/fixtures','MLS',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishchampionship/fixtures','Championship',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague1/fixtures','League 1',0,-1,0],['http://msn.foxsports.com/foxsoccer/englishleague2/fixtures','League 2',0,-1,0],['http://msn.foxsports.com/foxsoccer/ligue1/fixtures','France',0,-1,0],['http://msn.foxsports.com/foxsoccer/bundesliga/fixtures','Germany',0,-1,0],['http://msn.foxsports.com/foxsoccer/seriea/fixtures','Italy',0,-1,0],['http://msn.foxsports.com/foxsoccer/eredivisie/fixtures','Netherlands',0,-1,0],['http://msn.foxsports.com/foxsoccer/scottishpremierleague/fixtures','Scotland',0,-1,0],['http://msn.foxsports.com/foxsoccer/laliga/fixtures','Spain',0,-1,0],['http://msn.foxsports.com/foxsoccer/mexico/fixtures','Mexico',0,-1,0],['http://msn.foxsports.com/foxsoccer/libertadores/fixtures','Copa Libertadores',0,-1,0],['http://msn.foxsports.com/foxsoccer/copasudamericana/fixtures','Copa Sudamericana',0,-1,0]);
var nav_3154 = new Array(['http://msn.foxsports.com/cfb/scores','Top 25',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=1','ACC',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=2','Big East',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=4','Big Ten',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=71','Big 12',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=72','Conference USA',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=11','Independents',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=6','MAC',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=87','Mountain West',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=7','Pac-10',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=90','Sun Belt',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=8','SEC',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=10','WAC',0,-1,0],['http://msn.foxsports.com/cfb/scores?conf=I-AA','FCS (D1-AA)',0,-1,0]);
var nav_41 = new Array(['http://msn.foxsports.com/cfb/bcschampionship','BCS Championship',0,-1,0],['http://msn.foxsports.com/cfb/orangebowl','Orange Bowl',0,-1,0],['http://msn.foxsports.com/cfb/fiestabowl','Fiesta Bowl',0,-1,0],['http://msn.foxsports.com/cfb/sugarbowl','Sugar Bowl',0,-1,0],['http://msn.foxsports.com/cfb/rosebowl','Rose Bowl',0,-1,0]);
var nav_3155 = new Array(['http://msn.foxsports.com/cbk/scores','Top 25',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=all','ALL',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=6','ACC',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=101','Atlantic 10',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=102','Big East',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=3','Big Ten',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=103','Big 12',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=1','Conference USA',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=20','MAC',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=112','Mountain West',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=2','Pac-10',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=5','Sun Belt',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=10','SEC',0,-1,0],['http://msn.foxsports.com/cbk/scores?conf=111','WAC',0,-1,0]);
var nav_93 = new Array(['http://msn.foxsports.com/wcbk','Women's BK Home',0,-1,0],['http://msn.foxsports.com/cbk/brackets','Brackets',0,-1,0],['http://msn.foxsports.com/wcbk/scores','Scores',0,-1,0],['http://msn.foxsports.com/wcbk/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/wcbk/standings','Standings',0,-1,0],['http://msn.foxsports.com/wcbk/stats','Stats',0,-1,0],['http://msn.foxsports.com/wcbk/teams','Teams',0,-1,0],['http://msn.foxsports.com/wcbk/polls','Polls',0,-1,0]);
var nav_16701 = new Array(['http://msn.foxsports.com/nascar/cup/boxscore','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/boxscore','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/boxscore','Truck',0,-1,0]);
var nav_16702 = new Array(['http://msn.foxsports.com/nascar/cup/results','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/results','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/results','Truck',0,-1,0]);
var nav_16703 = new Array(['http://msn.foxsports.com/nascar/cup/schedule','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/schedule','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/schedule','Truck',0,-1,0]);
var nav_16704 = new Array(['http://msn.foxsports.com/nascar/cup/standings','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/standings','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/standings','Truck',0,-1,0]);
var nav_16705 = new Array(['http://msn.foxsports.com/nascar/cup/stats','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/stats','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/stats','Truck',0,-1,0]);
var nav_16706 = new Array(['http://msn.foxsports.com/nascar/cup/drivers','Sprint Cup',0,-1,0],['http://msn.foxsports.com/nascar/national/drivers','Nationwide',0,-1,0],['http://msn.foxsports.com/nascar/truck/drivers','Truck',0,-1,0]);
var nav_16707 = new Array(['http://www.speedtv.com','SPEEDTV.com',0,-1,1],['http://www.speedtv.com/nascaronspeed/','NASCAR on SPEED',0,-1,1]);
var nav_16708 = new Array(['http://msn.foxsports.com/fantasy/auto/index.asp','Fantasy Racing',0,-1,0],['http://msn.foxsports.com/nascar/allwaltrip/index','AllWaltrip.com',0,-1,0]);
var nav_16709 = new Array(['http://msn.foxsports.com/writer/Lee-Spencer-FOXSports.com-Senior-NASCAR-Writer?authorId=163','Lee Spencer',0,-1,0],['http://msn.foxsports.com/writer/Jorge-Mondaca-FOXSports.com-NASCAR-Editor?authorId=6568369','Jorge Mondaca',0,-1,0],['http://msn.foxsports.com/talent/nascar_on_fox/Darrell-Waltrip?authorId=87','Darrell Waltrip',0,-1,0],['http://msn.foxsports.com/talent/nascar_on_fox/Jeff-Hammond?authorId=75','Jeff Hammond',0,-1,0],['http://msn.foxsports.com/talent/nascar_on_fox/Larry-McReynolds?authorId=65','Larry McReynolds',0,-1,0],['http://msn.foxsports.com/talent/nascar_on_fox/Mike-Joy?authorId=88','Mike Joy',0,-1,0],['http://msn.foxsports.com/talent/nascar_on_fox/Steve-Byrnes?authorId=67','Steve Byrnes',0,-1,0]);
var nav_16710 = new Array(['http://msn.foxsports.com/fantasy/auto','Auto Racing',0,-1,0],['http://www.whatifsports.com/x.asp?u=/clutch/&r=438974','Racing Dynasty',0,-1,0]);
var nav_199 = new Array(['http://msn.foxsports.com/tennis','Tennis Home',0,-1,0],['http://msn.foxsports.com/morenews?categoryId=199','News',0,-1,0],['http://msn.foxsports.com/tennis/results','Results',0,-1,0],['http://msn.foxsports.com/tennis/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/tennis/rank','Rankings',0,-1,0],['http://msn.foxsports.com/tennis/players','Players',0,-1,0],['http://msn.foxsports.com/tennis/pgStory?workingCategoryId=199','Photos',0,-1,0],['http://msn.foxsports.com/video/Tennis','Videos',0,-1,0],['http://www.tennisweek.com','Tennis Week',0,-1,1]);
var nav_209 = new Array(['http://msn.foxsports.com/boxing','Boxing Home',0,-1,0],['http://msn.foxsports.com/name/public/Boxing/schedule','Schedule',0,-1,0],['http://msn.foxsports.com/name/public/Boxing/champions','Champions',0,-1,0],['http://www.razorgator.com/foxsports/sports/mixed-martial-arts/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/video/MMA_Boxing','Videos',0,-1,0]);
var nav_90 = new Array(['http://msn.foxsports.com/morenews?categoryId=90','News',0,-1,0],['http://msn.foxsports.com/wnba/scores','Scores',0,-1,0],['http://msn.foxsports.com/wnba/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/wnba/standings','Standings',0,-1,0],['http://msn.foxsports.com/wnba/stats','Stats',0,-1,0]);
var nav_2091 = new Array(['http://msn.foxsports.com/boxing','MMA Home',0,-1,0],['http://www.razorgator.com/foxsports/sports/mixed-martial-arts/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/video/MMA_Boxing','Videos',0,-1,0],['http://www.thefightnetwork.com','Partners',1,20912,1]);
var nav_241 = new Array(['http://msn.foxsports.com/horseracing','Home',0,-1,0],['http://msn.foxsports.com/horseracing/story/9143054','Events',0,-1,0],['http://www.tvg.com/special/FoxSportsJumpPage_final.htm','Odds/Results',0,-1,1],['http://www.tvg.com/special/FoxSportsJumpPage_final.htm','TVG',0,-1,1],['http://www.racereplays.com/foxsports/index.cfm?start=ws_foxsports.com_navbar','Race/Replays',0,-1,1]);
var nav_171 = new Array(['http://msn.foxsports.com/motor','Motor Home',0,-1,0],['http://msn.foxsports.com/motor/irl/results','Results',0,-1,0],['http://msn.foxsports.com/motor/irl/schedule','Schedule',0,-1,0],['http://msn.foxsports.com/motor/irl/standings','Standings',0,-1,0],['http://msn.foxsports.com/motor/irl/stats','Stats',0,-1,0],['http://msn.foxsports.com/motor/irl/drivers','Drivers',0,-1,0]);
var nav_172 = new Array(['http://msn.foxsports.com/motor/f1','F1 Home',0,-1,0],['http://msn.foxsports.com/motor/f1/morenews','News',0,-1,0],['http://msn.foxsports.com/motor/f1/results','Results',0,-1,0],['http://msn.foxsports.com/motor/f1/schedule','Schedule',0,-1,0],['http://msn.foxsports.com/motor/f1/standings','Standings',0,-1,0],['http://msn.foxsports.com/motor/f1/drivers','Drivers',0,-1,0]);
var nav_173 = new Array(['http://msn.foxsports.com/motor','Motor Home',0,-1,0],['http://msn.foxsports.com/motor/champ/results','Results',0,-1,0],['http://msn.foxsports.com/motor/champ/schedule','Schedule',0,-1,0],['http://msn.foxsports.com/motor/champ/standings','Standings',0,-1,0],['http://msn.foxsports.com/motor/champ/stats','Stats',0,-1,0],['http://msn.foxsports.com/motor/champ/drivers','Drivers',0,-1,0]);
var nav_391 = new Array(['http://msn.foxsports.com/story/1636002','FSN',0,-1,0],['http://msn.foxsports.com/fcs','FOXCollegeSports',0,-1,0],['http://msn.foxsports.com/soccer/fsctv','Fox Soccer Channel',0,-1,0],['http://www.speedtv.com','SPEED',0,-1,1],['http://www.fuel.tv','Fuel',0,-1,1],['http://www.fox.com','FOX',0,-1,1],['http://www.fxnetworks.com','FX',0,-1,1],['http://www.foxnews.com','FOX News',0,-1,1],['http://bigtennetwork.com/','Big Ten Network',0,-1,1]);
var nav_400 = new Array(['http://www.hmshost.com/foxsportsskybox/','Fox Sports SkyBox',0,-1,0]);
var nav_501 = new Array(['http://msn.foxsports.com/writer/Alex-Marvez-FOXSports.com-Senior-NFL-Writer?authorId=309','Alex Marvez',0,-1,0],['http://msn.foxsports.com/writer/Jay-Glazer-FOXSports.com-Senior-NFL-Writer?authorId=228','Jay Glazer',0,-1,0],['http://msn.foxsports.com/writer/John-Czarnecki-FOXSports.com-Senior-NFL-Writer?authorId=211','John Czarnecki',0,-1,0],['http://msn.foxsports.com/talent/nfl_on_fox/Terry-Bradshaw?authorId=89','Terry Bradshaw',0,-1,0],['http://msn.foxsports.com/talent/nfl_on_fox/Howie-Long?authorId=92','Howie Long',0,-1,0],['http://msn.foxsports.com/talent/nfl_on_fox/Jimmy-Johnson?authorId=218','Jimmy Johnson',0,-1,0],['http://msn.foxsports.com/writer/Michael-David-Smith-FOXSports.com-NFL-Contributor?authorId=302','Michael David Smith',0,-1,0],['http://msn.foxsports.com/writer/Adam-Schein-FOXSports.com-NFL-Contributor?authorId=278','Adam Schein',0,-1,0]);
var nav_502 = new Array(['http://fantasy.foxsports.com/fantasy/football/commissioner','Commissioner',0,-1,0],['http://fantasy.foxsports.com/fantasy/football/live','Live',0,-1,0],['http://fantasy.foxsports.com/fantasy/football/quick-challenge','Quick Challenge',0,-1,0],['http://msn.foxsports.com/fantasy/football/pickem','Pro Pick'em',0,-1,0],['http://msn.foxsports.com/fantasy/football/survivor/','Survivor',0,-1,0],['http://www.whatifsports.com/x.asp?u=/nfl-l/&r=438974','SimLeague Football',0,-1,0]);
var nav_4902 = new Array(['http://msn.foxsports.com/writer/Ken-Rosenthal-FOXSports.com-Senior-MLB-Writer?authorId=162','Ken Rosenthal',0,-1,0],['http://msn.foxsports.com/writer/Dayn-Perry-FOXSports.com-MLB-Contributor?authorId=217','Dayn Perry',0,-1,0]);
var nav_4903 = new Array(['http://msn.foxsports.com/fantasy/baseball/commissioner','Commissioner',0,-1,0],['http://msn.foxsports.com/fantasy/baseball/hotstreak/','Hot Streak',0,-1,0],['http://msn.foxsports.com/fantasy/baseball/salary-cap','Salary Cap',0,-1,0],['http://www.whatifsports.com/x.asp?u=/mlb-l/&r=438974','SimLeague Baseball',0,-1,0],['http://www.whatifsports.com/x.asp?u=/hbd/&r=438974','Hardball Dynasty',0,-1,0]);
var nav_7301 = new Array(['http://msn.foxsports.com/writer/Mike-Kahn-FOXSports.com-NBA-Contributor?authorId=277','Mike Kahn',0,-1,0],['http://msn.foxsports.com/writer/Charley-Rosen-FOXSports.com-NBA-Contributor?authorId=227','Charley Rosen',0,-1,0],['http://msn.foxsports.com/writer/John-Galinsky-FOXSports.com-NBA-Editor?authorId=4698321','John Galinsky',0,-1,0]);
var nav_7302 = new Array(['http://msn.foxsports.com/fantasy/basketball/hotstreak/','Hot Streak',0,-1,0],['http://www.whatifsports.com/x.asp?u=/nba-l/&r=438974','SimLeague',0,-1,0]);
var nav_9901 = new Array(['http://www.whatifsports.com/x.asp?u=/hd/&r=438974','Hoops Dynasty',0,-1,0]);
var nav_2401 = new Array(['http://msn.foxsports.com/fantasy/collegefootball/pickem','College Pick'em',0,-1,0],['http://www.whatifsports.com/x.asp?u=/gd/&r=438974','Gridiron Dynasty',0,-1,0]);
var nav_220 = new Array(['http://msn.foxsports.com/golf','Golf Home',0,-1,0],['http://msn.foxsports.com/golf/leaderboard','Leaderboard',0,-1,0],['http://msn.foxsports.com/golf/schedule','Schedule',0,-1,0],['http://www.golfweek.com','Golfweek',0,-1,1],['http://www.razorgator.com/foxsports/sports/golf/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/golf/pgStory?workingCategoryId=220','Photos',0,-1,0],['http://msn.foxsports.com/video/Golf','Videos',0,-1,0],['http://www.pgatour.com','PGATOUR.com',0,-1,1]);
var nav_2874 = new Array(['http://msn.foxsports.com/motor','Motorsports Home',0,-1,0],['http://msn.foxsports.com/nascar','NASCAR Home',0,-1,0],['http://msn.foxsports.com/motor/f1','F1 Home',0,-1,0],['http://www.razorgator.com/foxsports/sports/motor-sports/nascar/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://www.speedtv.com','SPEED',0,-1,1]);
var nav_24 = new Array(['http://msn.foxsports.com/cfb','NCAA FB Home',0,-1,0],['http://msn.foxsports.com/cfb/scores','Scores',1,3154,0],['http://msn.foxsports.com/cfb/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/cfb/standings','Standings',0,-1,0],['http://msn.foxsports.com/cfb/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/cfb/stats','Stats',0,-1,0],['http://msn.foxsports.com/cfb/teams','Teams',0,-1,0],['http://msn.foxsports.com/cfb/odds/spread','Odds',0,-1,0],['http://msn.foxsports.com/cfb/polls','Polls',0,-1,0],['http://www.razorgator.com/foxsports/sports/football/ncaa-football/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/cfb/pgStory?workingCategoryId=24','Photos',0,-1,0],['http://msn.foxsports.com/video/CFB','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/fcs','FCS',0,-1,0],['http://college.scout.com/','Scout.com',0,-1,0],['http://www.bcsfootball.org','BCSFootball.org',0,-1,0],['http://bigtennetwork.com/','Big Ten Network',0,-1,0],['http://msn.foxsports.com/fantasy/collegefootball/pickem','Fantasy',1,2401,0]);
var nav_5798 = new Array(['http://msn.foxsports.com/nfl','NFL Home',0,-1,0],['http://msn.foxsports.com/nfl/draftCentral','Draft Central',0,-1,0],['http://msn.foxsports.com/nfl/draftTracker','Draft Tracker',0,-1,0],['http://msn.foxsports.com/nfl/scores','Scores',0,-1,0],['http://msn.foxsports.com/nfl/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nfl/standings','Standings',0,-1,0],['http://msn.foxsports.com/nfl/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/nfl/stats','Stats',0,-1,0],['http://msn.foxsports.com/nfl/transactions','Transactions',0,-1,0],['http://msn.foxsports.com/nfl/injuries','Injuries',0,-1,0],['http://msn.foxsports.com/nfl/teams','Teams',0,-1,0],['http://msn.foxsports.com/nfl/players','Players',0,-1,0],['http://msn.foxsports.com/nfl/odds/spread','Odds',0,-1,0],['http://nfl.scout.com/','Scout.com',0,-1,0],['http://www.razorgator.com/foxsports/sports/football/nfl/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/nfl/pgStory?workingCategoryId=5','Photos',0,-1,0],['http://msn.foxsports.com/video/NFL','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/writer/index','Writers',1,501,0],['http://msn.foxsports.com/fantasy/football/commissioner','Fantasy Football',0,-1,0]);
var nav_5 = new Array(['http://msn.foxsports.com/nfl','NFL Home',0,-1,0],['http://msn.foxsports.com/nfl/scores','Scores',0,-1,0],['http://msn.foxsports.com/nfl/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nfl/standings','Standings',0,-1,0],['http://msn.foxsports.com/Glaze','Jay Glazer',0,-1,0],['http://msn.foxsports.com/nfl/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/nfl/stats','Stats',0,-1,0],['http://msn.foxsports.com/nfl/transactions','Transactions',0,-1,0],['http://msn.foxsports.com/nfl/injuries','Injuries',0,-1,0],['http://msn.foxsports.com/nfl/teams','Teams',0,-1,0],['http://msn.foxsports.com/nfl/players','Players',0,-1,0],['http://msn.foxsports.com/nfl/odds/spread','Odds',0,-1,0],['http://nfl.scout.com/','Scout.com',0,-1,0],['http://www.razorgator.com/foxsports/sports/football/nfl/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/nfl/pgStory?workingCategoryId=5','Photos',0,-1,0],['http://msn.foxsports.com/video/NFL','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/nfl/draftCentral','Draft Central',0,-1,0],['http://msn.foxsports.com/nfl/draftTracker','Draft Tracker',0,-1,0],['http://msn.foxsports.com/writer/index','Writers',1,501,0],['http://msn.foxsports.com/fantasy/football','Fantasy',1,502,0]);
var nav_142 = new Array(['http://msn.foxsports.com/nhl','NHL Home',0,-1,0],['http://msn.foxsports.com/nhl/scores','Scores',0,-1,0],['http://msn.foxsports.com/nhl/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nhl/standings','Standings',0,-1,0],['http://msn.foxsports.com/nhl/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/nhl/stats','Stats',0,-1,0],['http://msn.foxsports.com/nhl/transactions','Transactions',0,-1,0],['http://msn.foxsports.com/nhl/injuries','Injuries',0,-1,0],['http://msn.foxsports.com/nhl/teams','Teams',0,-1,0],['http://msn.foxsports.com/nhl/players','Players',0,-1,0],['http://msn.foxsports.com/nhl/odds/spread','Odds',0,-1,0],['http://www.razorgator.com/foxsports/sports/hockey/nhl/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/nhl/pgStory?workingCategoryId=142','Photos',0,-1,0],['http://msn.foxsports.com/video/NHL','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://www.whatifsports.com/x.asp?u=/nhl-l/&r=438974','SimLeague Hockey',0,-1,0]);
var nav_73 = new Array(['http://msn.foxsports.com/nba','NBA Home',0,-1,0],['http://msn.foxsports.com/nba/scores','Scores',0,-1,0],['http://msn.foxsports.com/nba/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nba/standings','Standings',0,-1,0],['http://msn.foxsports.com/nba/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/nba/stats','Stats',0,-1,0],['http://msn.foxsports.com/nba/transactions','Transactions',0,-1,0],['http://msn.foxsports.com/nba/injuries','Injuries',0,-1,0],['http://msn.foxsports.com/nba/teams','Teams',0,-1,0],['http://msn.foxsports.com/nba/players','Players',0,-1,0],['http://msn.foxsports.com/nba/odds/spread','Odds',0,-1,0],['http://www.razorgator.com/foxsports/sports/basketball/nba/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://community.foxsports.com/go/browse/blogs?SPORTS=3&FAVORITE_TEAMS=&searchfor=&terms=NBA','Blogs',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67111/Basketball','Forums',0,-1,0],['http://msn.foxsports.com/nba/pgStory?workingCategoryId=73','Photos',0,-1,0],['http://msn.foxsports.com/video/NBA','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/writer/index','Writers',1,7301,0],['http://msn.foxsports.com/fantasy/basketball/hotstreak/','Fantasy',1,7302,0]);
var nav_49 = new Array(['http://msn.foxsports.com/mlb','MLB Home',0,-1,0],['http://msn.foxsports.com/mlb/scores','Scores',0,-1,0],['http://msn.foxsports.com/mlb/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/mlb/standings','Standings',0,-1,0],['http://msn.foxsports.com/mlb/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/mlb/stats','Stats',0,-1,0],['http://msn.foxsports.com/mlb/transactions','Transactions',0,-1,0],['http://msn.foxsports.com/mlb/injuries','Injuries',0,-1,0],['http://msn.foxsports.com/mlb/teams','Teams',0,-1,0],['http://msn.foxsports.com/mlb/players','Players',0,-1,0],['http://msn.foxsports.com/mlb/odds/spread','Odds',0,-1,0],['http://mlb.scout.com','Scout.com',0,-1,0],['http://www.razorgator.com/foxsports/sports/baseball/mlb/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://community.foxsports.com/go/browse/blogs?SPORTS=2&FAVORITE_TEAMS=&searchfor=&terms=MLB','Blogs',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67101/Baseball','Forums',0,-1,0],['http://msn.foxsports.com/mlb/pgStory?workingCategoryId=49','Photos',0,-1,0],['http://msn.foxsports.com/video/MLB','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/writer/index','Writers',1,4902,0],['http://msn.foxsports.com/fantasy/baseball','Fantasy',1,4903,0]);
var nav_99 = new Array(['http://msn.foxsports.com/cbk','NCAA BK Home',0,-1,0],['http://msn.foxsports.com/cbk/story/2229129','Brackets',0,-1,0],['http://msn.foxsports.com/cbk/scores','Scores',0,-1,0],['http://msn.foxsports.com/cbk/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/cbk/standings','Standings',0,-1,0],['http://msn.foxsports.com/cbk/stats','Stats',0,-1,0],['http://msn.foxsports.com/cbk/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/cbk/teams','Teams',0,-1,0],['http://msn.foxsports.com/cbk/odds/spread','Odds',0,-1,0],['http://msn.foxsports.com/cbk/polls','Polls',0,-1,0],['http://www.razorgator.com/foxsports/sports/basketball/ncaa-basketball/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/cbk/pgStory?workingCategoryId=99','Photos',0,-1,0],['http://msn.foxsports.com/video/CBK','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/wcbk','Women's BK',0,-1,0],['http://msn.foxsports.com/fcs','FCS',0,-1,0],['http://college.scout.com/','Scout.com',0,-1,0],['http://bigtennetwork.com/','Big Ten Network',0,-1,0],['http://msn.foxsports.com/fantasy/collegebasketball/tourney','Fantasy',1,9901,0]);
var nav_170 = new Array(['http://msn.foxsports.com/nascar/truck/morenews','Truck Home',0,-1,0],['http://msn.foxsports.com/nascar/truck/results','Results',0,-1,0],['http://msn.foxsports.com/nascar/truck/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nascar/truck/standings','Standings',0,-1,0],['http://msn.foxsports.com/nascar/truck/stats','Stats',0,-1,0],['http://msn.foxsports.com/nascar/truck/drivers','Drivers',0,-1,0],['http://msn.foxsports.com/nascar/tracks','Tracks',0,-1,0]);
var nav_169 = new Array(['http://msn.foxsports.com/nascar/national/morenews','Nationwide Home',0,-1,0],['http://msn.foxsports.com/nascar/national/results','Results',0,-1,0],['http://msn.foxsports.com/nascar/national/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nascar/national/standings','Standings',0,-1,0],['http://msn.foxsports.com/nascar/national/stats','Stats',0,-1,0],['http://msn.foxsports.com/nascar/national/drivers','Drivers',0,-1,0],['http://msn.foxsports.com/nascar/tracks','Tracks',0,-1,0]);
var nav_168 = new Array(['http://msn.foxsports.com/nascar/national/morenews','Nextel Cup Home',0,-1,0],['http://msn.foxsports.com/nascar/cup/results','Results',0,-1,0],['http://msn.foxsports.com/nascar/cup/schedule','Schedules',0,-1,0],['http://msn.foxsports.com/nascar/cup/standings','Standings',0,-1,0],['http://msn.foxsports.com/nascar/cup/stats','Stats',0,-1,0],['http://msn.foxsports.com/nascar/cup/drivers','Drivers',0,-1,0],['http://msn.foxsports.com/nascar/tracks','Tracks',0,-1,0]);
var nav_167 = new Array(['http://msn.foxsports.com/nascar','NASCAR Home',0,-1,0],['http://msn.foxsports.com/nascar/cup/raceTrax','RaceTrax',0,-1,0],['http://msn.foxsports.com/nascar/cup/boxscore','Box Score',1,16701,0],['http://msn.foxsports.com/nascar/cup/results','Results',1,16702,0],['http://msn.foxsports.com/nascar/cup/schedule','Schedules',1,16703,0],['http://msn.foxsports.com/nascar/cup/standings','Standings',1,16704,0],['http://msn.foxsports.com/nascar/powerRankings','Power Rankings',0,-1,0],['http://msn.foxsports.com/nascar/cup/stats','Stats',1,16705,0],['http://msn.foxsports.com/nascar/cup/drivers','Drivers',1,16706,0],['http://msn.foxsports.com/nascar/tracks','Tracks',0,-1,0],['http://www.razorgator.com/foxsports/sports/motor-sports/nascar/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://www.speedtv.com','SPEED',1,16707,1],['http://community.foxsports.com/go/browse/blogs?SPORTS=6&FAVORITE_TEAMS=&searchfor=&terms=NASCAR','Blogs',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67141/NASCAR','Forums',0,-1,0],['http://msn.foxsports.com/nascar/pgStory?workingCategoryId=167','Photos',0,-1,0],['http://msn.foxsports.com/video/NASCAR','Videos',0,-1,0],['http://msn.foxsports.com/apps','Apps',0,-1,0],['http://msn.foxsports.com/writer/index','Writers',1,16709,0],['http://msn.foxsports.com/name/public/NASCAR/features','More NASCAR',1,16708,0],['http://msn.foxsports.com/fantasy/auto','Fantasy',1,16710,0]);
var nav_2188 = new Array(['http://foxsoccermls.stats.com/','MLS Fantasy',0,-1,0],['http://foxsoccerpl.stats.com/','PL Fantasy',0,-1,0],['http://powersoccer.foxsoccer.com','Power Soccer',0,-1,0],['http://managerzone.foxsoccer.com','Manager Zone',0,-1,0],['http://www.whatifsports.com/x.asp?u=soccer/&r=657394','FC Dynasty',0,-1,1]);
var nav_2187 = new Array(['http://msn.foxsports.com/fantasy/baseball/commissioner','Commissioner',0,-1,0],['http://msn.foxsports.com/fantasy/baseball/hotstreak/','Hot Streak',0,-1,0],['http://msn.foxsports.com/fantasy/baseball/salary-cap','Salary Cap',0,-1,0],['http://msn.foxsports.com/fantasy/baseball','News & Analysis',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67151/Fantasy_Baseball','Forums',0,-1,0]);
var nav_2186 = new Array(['http://fantasy.foxsports.com/fantasy/football/commissioner','Commissioner',0,-1,0],['http://fantasy.foxsports.com/fantasy/football/live','Live',0,-1,0],['http://fantasy.foxsports.com/fantasy/football/quick-challenge','Quick Challenge',0,-1,0],['http://msn.foxsports.com/fantasy/football','News & Analysis',0,-1,0],['http://msn.foxsports.com/fantasy/resources/footballdraftguide','Draft Guide',0,-1,0],['http://msn.foxsports.com/fantasy/football/pickem','Pro Pick'em',0,-1,0],['http://msn.foxsports.com/fantasy/football/survivor/','Survivor',0,-1,0],['http://msn.foxsports.com/fantasy/collegefootball/pickem','College Pick'em',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67191/Fantasy_Football','Forums',0,-1,0]);
var nav_2407 = new Array(['http://msn.foxsports.com/fantasy','Home',0,-1,0],['http://msn.foxsports.com/fantasy/football','Football',1,2186,0],['http://msn.foxsports.com/fantasy/baseball','Baseball',1,2187,0],['http://msn.foxsports.com/fantasy/basketball/hotstreak/','Basketball',0,-1,0],['http://msn.foxsports.com/fantasy/auto/index.asp','Auto Racing',0,-1,0],['http://community.foxsports.com/go/forum/viewcategory/67191/Fantasy_Football','Forums',0,-1,0],['http://msn.foxsports.com/fantasy/sim','Simulation Games',0,-1,0]);
var nav_2662 = new Array(['http://msn.foxsports.com/name/public/siteIndex','Site Index',0,-1,0],['http://msn.foxsports.com/mobile','Mobile',0,-1,0],['http://msn.foxsports.com/boxing','Boxing',1,209,0],['http://msn.foxsports.com/morenews?categoryId=90','WNBA',1,90,0],['http://msn.foxsports.com/motor','IRL',1,171,0],['http://msn.foxsports.com/motor/f1','F1',1,172,0],['http://msn.foxsports.com/horseracing','Horse Racing',1,241,0],['http://www.redbullairrace.com','Air Race Series',0,-1,1],['http://msn.foxsports.com/apps','Fox Sports Apps',0,-1,1],['http://msn.foxsports.com/radio','Radio',0,-1,0],['http://www.foxsportssupports.com','FOX Sports Supports',0,-1,0],['http://www.hmshost.com/foxsportsskybox/','Restaurants',1,400,0],['http://msn.foxsports.com/tv/schedule','Television',1,391,0]);
var nav_1768 = new Array(['http://msn.foxsports.com/fsc/soccer/video','Premier League',0,-1,0],['http://www.seriea.tv/','SerieA.tv',0,-1,1]);
var nav_176 = new Array(['http://msn.foxsports.com/soccer/usa','USA',1,195,0],['http://msn.foxsports.com/soccer/england','England',1,177,0],['http://msn.foxsports.com/soccer/europe','Europe',1,2740,0],['http://msn.foxsports.com/soccer/latinamerica','Latin America',1,2741,0],['http://msn.foxsports.com/foxsoccer/soccer/epl/scores','Scores',1,1001,0],['http://msn.foxsports.com/foxsoccer/soccer/standings?categoryId=433','Standings',1,1002,0],['http://msn.foxsports.com/foxsoccer/soccer/fixtures?categoryId=433','Schedules',1,1003,0],['http://msn.foxsports.com/soccer/fsctv','FSC TV',1,194,0],['http://www.razorgator.com/foxsports/sports/soccer/?c=79-3-0-0-0-0-0&pid=foxsports/','Tickets',0,-1,0],['http://msn.foxsports.com/soccer/pgStory?workingCategoryId=176','Photos',0,-1,0],['http://msn.foxsports.com/video/FOXSoccer','Videos',0,-1,0],['http://foxsoccerpl.stats.com/','Games',1,2188,0],['http://community.foxsports.com?site=FOXSoccer','Community',0,-1,0]);
var nav_5776 = new Array(['http://community.foxsports.com/','Community Central',0,-1,0],['http://community.foxsports.com/go/browse/users','People',0,-1,0],['http://community.foxsports.com/go/browse/blogs','Blogs',0,-1,0],['http://community.foxsports.com/go/browse/photos','Photos',0,-1,0],['http://community.foxsports.com/go/browse/videos','Videos',0,-1,0],['http://community.foxsports.com/go/browse/groups','Groups',0,-1,0],['http://community.foxsports.com/go/forum/viewboard','Forums',0,-1,0]);
var nav_351 = new Array(['http://msn.foxsports.com/video','Video Central',0,-1,0],['http://multimedia.foxsports.com','Video Search',0,-1,0],['http://msn.foxsports.com/lunchwithbenefits','Lunch with Benefits',0,-1,0],['http://msn.foxsports.com/video/shows/nfl-on-fox','NFL on FOX',0,-1,0],['http://msn.foxsports.com/video/shows/mlb-on-fox','MLB on FOX',0,-1,0],['http://msn.foxsports.com/video/shows/big12','Big 12 on FSN',0,-1,0],['http://msn.foxsports.com/video/shows/pac10','Pac-10 on FSN',0,-1,0],['http://msn.foxsports.com/video/shows/onlineot','Online OT',0,-1,0],['http://msn.foxsports.com/video/shows/wpt','ClubWPT',0,-1,0],['http://msn.foxsports.com/verizonfootballzone','Football Zone',0,-1,0]);
var tt = new Array([2,20912],[1,2751],[2,177],[2,2740],[2,2741],[2,194],[2,195],[2,1001],[2,1002],[2,1003],[2,3154],[1,41],[1,3155],[1,93],[2,16701],[2,16702],[2,16703],[2,16704],[2,16705],[2,16706],[2,16707],[2,16708],[2,16709],[2,16710],[1,199],[2,209],[2,90],[1,2091],[2,241],[2,171],[2,172],[1,173],[2,391],[2,400],[2,501],[2,502],[2,4902],[2,4903],[2,7301],[2,7302],[2,9901],[2,2401],[1,220],[1,2874],[1,24],[1,5798],[1,5],[1,142],[1,73],[1,49],[1,99],[1,170],[1,169],[1,168],[1,167],[2,2188],[2,2187],[2,2186],[1,2407],[1,2662],[1,1768],[1,176],[1,5776],[1,351]);
var navOn=6784;
// *********************************make sub navs*******************
var arrRt = '";
}
else {
var strDiv = " ";
}
strDiv += ' ';
document.write(strDiv);
}
// ******************************** include style sheet ************************************/
document.write('');
Initms();
document.write('
'); |