document.write('
'); var _t = ''; _t += ''; _t += '
'; _t += ''; _t += ''; _t += ''; _t += ''; _t += ''; _t += ''; document.write(_t); function generateLoginUrl() { var path = location.pathname; var query = location.search ; var host = "http://" + location.hostname; if (query == '') { query = "?need=prefs"; } else { query += "&need=prefs"; } if (window.location.href.indexOf('blogs') != -1) { var cfu = escape("https://s.foxsports.com/pp/response?blogs=true&cfu=" + host + path + query); } else if (host != "http://msn.foxsports.com") { var cfu = escape("https://s.foxsports.com/pp/response?cfu=" + host + path + query); } else { var cfu = escape("https://s.foxsports.com/pp/response?cfu=" + path + query); } var queryParams = "&seclog=10&wa=wsignin1.0&wreply=" + cfu + "&cb=" + escape("&wa=wsignin1.0&wreply=") + cfu; return "https://login.live.com/ppsecure/secure.srf?wp=MBI_FED_SSL" + queryParams; } var writeString = ''; writeString += ''; writeString += ''; writeString += '
'; _t += '
'; _t += ''; _t += '
'; _t += '
'; if (navigator.appName.indexOf('WebTV') != -1) { document.write(''); } else { writeString += '
'; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += '
go to MSN.com'; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += ' '; writeString += '
  autos    money    sports    tech    more    
'; writeString += '
'; writeString += ' '; writeString += ' '; writeString += '   MSN Home  |  Mail  |  My MSN  | '; if (typeof(euid)== "undefined" || euid == null || euid == '') { writeString += ' Sign in  '; } else { writeString += ' Sign out  '; } writeString += '
'; writeString += '
'; writeString += '
'; 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 = ""; } } 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: [ '>' | '+' | ] // simpsel: element? hash? class* // element: ident // hash: '#' ident // class: '.' ident // ident: [a-zA-Z0-9-]+ // at least one of the three elements of the simpsel must be present. // ///////////////////////////////////////////////////////////////////////////// // given a css selector, returns an array of elements // within the document dom that match that selector bind.Select = function( cssSelector ) { // read an identifier from the selector at the current location function getIdentifier() { var identifier = null; if ( cssSelector ) { // an asterisk means all elements if ( cssSelector.charAt(pos) == '*' ) { identifier = '*'; } else { // loop until the end of the string. // will break out of the loop when encountering a non-identifier char while( pos < cssSelector.length ) { var ch = cssSelector.charAt( pos ); // we allow a-z, A-Z, 0-9, and a hyphen. // Underscores are not allowed. if ( ('a' <= ch && ch <= 'z') || ('A' <= ch && ch <= 'Z') || ('0' <= ch && ch <= '9') || ch == '-' ) { // add the character to the identifier string identifier = (identifier ? identifier + ch : ch); ++pos; } else { // not a valid ident character -- we're done break; } } } } return identifier; } // skip over any whitespace at the currrent selector position function skipSpace() { while( pos < cssSelector.length && cssSelector.charAt(pos) == ' ' ) { ++pos; } } // return a simple selector combinator character, if any function getCombinator() { var combinator = null; // skip any space skipSpace(); // check the current character for an allowed combinator switch( cssSelector.charAt(pos) ) { case '+': case '>': // this is an allowed combinator combinator = cssSelector.charAt(pos); ++pos; // skip any space after the combinator skipSpace(); break; } return combinator; } // get a hash or class from the selector stream function getHashOrClass() { // skip over the # or the . character -- we don't want it ++pos; // just return the character part return getIdentifier(); } // get a simple selector from the selector stream. // return null if no selector on the stream function getSimpleSelector() { var selector = null; // see if there's an element identifier first var element = getIdentifier(); if ( element !== null ) { // there is -- create a simple selector object from it selector = new SimpSelector( element ); } // loop while we still have characters to read. // we will break out of the loop if we encounter a // character that doesn't make a simple selector while( cssSelector && pos < cssSelector.length ) { var ch = cssSelector.charAt(pos); if ( ch == '#' ) { // ids are prefaced with a hash character // if we don't already have a simple selector object, if ( !selector ) { // create it now with no element selector = new SimpSelector(); } // set the id property on the simple selector object. // there SHOULD only be a single id per simple selector // TODO: if (sel.id) error! selector.setID( getHashOrClass() ); } else if ( ch == '.' ) { // classes are prefaced with a period character // if we don't already have a simple selector object, if ( !selector ) { selector = new SimpSelector(); } // add the class to the simple selector. // add the class to the simple selector. There can be multiple // per simple selector selector.addClass( getHashOrClass() ); } else { // unexpected character; break out of the loop break; } } return selector; } // get the full, complex selector, represented as an array of // simple selector objects. function getSelectors() { // initially empty array var selectors = []; // get the first selector (if any) var simpleSelector = getSimpleSelector(); if ( simpleSelector ) { // add the simple selector to the array selectors.push(simpleSelector); // loop while we still have characters in the selector stream. // we will break out when we can no longer find a simple selector while( pos < cssSelector.length ) { // check for a combinator var combinator = getCombinator(); // get the next simple selector simpleSelector = getSimpleSelector(); if ( simpleSelector ) { // if there was a combinator before this selector, if ( combinator ) { // add the combinator to the new selector's properties simpleSelector.setComb( combinator ); } // push the new selector onto the array selectors.push( simpleSelector ); } else { // no more simple selectors; bail // TODO: if (comb) error! break; } } } return selectors; } // simple selector object // element? [ hash | class ]* // there can be multiple classes for each simple selector, // but there really should only be one id function SimpSelector( element ) { // shortcut var simp = this; // fields var id = ''; var combinator = null; var classes = null; // method to set the id for this selector simp.setID = function(idValue) { id = idValue; }; // set the combinator simp.setComb = function(comb) { combinator = comb; }; // add a class to the array simp.addClass = function( className ) { if ( classes ) { // push the new class to the end of the existing array classes.push( className ); } else { // no class array yet; add this first class in a new array classes = [ className ]; } }; // return a list of nodes under parent that match this simple selector simp.getNodes = function( parent ) { var ndx, node, nextElement, nodeList = []; if ( id ) { // there's an id -- only one node is possible switch ( combinator ) { case '>': // we only want to check the direct children for(ndx=0; ndx < parent.childNodes.length; ++ndx) { // if the child is an element, and the id matched what we're looking for... if ( parent.childNodes[ndx].nodeType == 1 && parent.childNodes[ndx].id == id ) { // we'll save this element for further tests (element and class) node = parent.childNodes[ndx]; break; } } break; case '+': // we only want the next sibling node nextElement = getNextElement( parent ); // and it has to match the desired id if ( nextElement && nextElement.id == id ) { // save this element for further tests (element and class) node = nextElement; } break; default: // any child anywhere under the parent node = parent.getElementById( id ); break; } // if there is a specified element and it's not a star wildcard, it must match // (convert to lower-case, because nodeName is in upper-case for some weird reason). // and the classes must match. if ( node && (!element || element == '*' || element.toLowerCase() == node.nodeName.toLowerCase()) && checkClasses(node) ) { // this is a selected node; add it to the array nodeList.push( node ); } } else if ( element && element != '*' ) { // no id, but there is a specific element we're after switch( combinator ) { case '>': // we only want direct children for(ndx=0; ndx < parent.childNodes.length; ++ndx) { node = parent.childNodes[ndx]; // which match our tag names and our classes if ( node.nodeType == 1 && node.nodeName.toLowerCase() == element && checkClasses(node) ) { // this node is selected nodeList.push( node ); } } break; case '+': // just the next sibling nextElement = getNextElement( parent ); // and only if the tag name matches and the classes check out if ( nextElement && nextElement.nodeName.toLowerCase() == element && checkClasses(nextElement) ) { // this node is selected nodeList.push( nextElement ); } break; default: // any subelements at any depth var elements = parent.getElementsByTagName( element ); // test the classes on each one, adding matching elements to the selected array for( ndx = 0; ndx < elements.length; ++ndx ) { if ( checkClasses(elements[ndx]) ) { nodeList.push( elements[ndx] ); } } break; } } else { // no id and no element, just a class. switch( combinator ) { case '>': // we only want direct children for(ndx=0; ndx < parent.childNodes.length; ++ndx) { node = parent.childNodes[ndx]; // which match our tag names if ( node.nodeType == 1 && checkClasses(node) ) { nodeList.push( node ); } } break; case '+': // just the next sibling nextElement = getNextElement( parent ); // and only if the tag name matches if ( nextElement && checkClasses(nextElement) ) { nodeList.push( nextElement ); } break; default: // easiest just to recursively walk the dom node tree // looking for nodes that match our desired classes checkNodeClasses( parent, nodeList ); break; } } return nodeList; }; function checkNodeClasses( parent, nodes ) { // for each child node.... for( var ndx=0; ndx < parent.childNodes.length; ++ndx ) { var node = parent.childNodes[ndx]; // if this is an element node... if ( node.nodeType == 1 ) { // if the classes check out, then add it to the match list if ( checkClasses(node) ) { nodes.push( node ); } // recursively walk this element node checkNodeClasses( node, nodes ); } } } function checkClasses( element ) { var okay = 1; if ( classes ) { var className = element.className; if ( className ) { // make an array of which classes we have on the node var classNames = className.collapse().split(' '); // each class we want to match must be available or we're not okay for(var ndx=0; ndx < classes.length; ++ndx) { // if the available class array doesn't contain the wanted class... if ( !classNames.contains(classes[ndx]) ) { // then the check fails okay = 0; break; } } } else { // matching classes, but none on the node okay = 0; } } return okay; } } // take the array of elements and apply the given simple selector to // return another array of elements function applySelector( elements, simpleSelector ) { // initially empty array var matchedElements = []; // for each element in the source list... for(var ndx = 0; ndx < elements.length; ++ndx) { // add the elements selected by the selector on this element matchedElements = matchedElements.concat( simpleSelector.getNodes( elements[ndx] ) ); } return matchedElements; } // start at the beginning of the selector var pos = 0; // get the array of simple selectors from the selector string var sels = getSelectors(); // initially we'll start with the entire document var elements = [document]; // for each simple selector, we'll apply the selector to the current list // of elements, then apply the next selector on the results, etc. for(var ndx = 0; ndx < sels.length && elements.length > 0; ++ndx) { elements = applySelector( elements, sels[ndx] ); } return elements; }; // given an element, returns the next sibling element in the dom, // or null if there is none function getNextElement( element ) { var nextElement = element.nextSibling; while( nextElement && nextElement.nodeType != 1 ) { nextElement = nextElement.nextSibling; } return nextElement; } ///////////////////////////////////////////////////////////////////////////// // // this function is automatically hooked into the unload event of the window // to handle calling the dispose method of all our bindings // ///////////////////////////////////////////////////////////////////////////// // this function walks through all the bindings we may have // on our page and calls the dispose method (if there is one). (function() { // make sure all elements are unbound bind.Unbind( document, 1 ); // make sure the global bindings are empty allBindings = []; }).hook(window,"unload"); }).ns("Msn.Bind"); ///////////////////////////////////////////////////////////////////////////////// // // File: header.js // Defines: Msn.Header // Dependencies: base.js bind.js dom.js // Description: implements the javascript routines for the header // // Copyright (c) 2006 by Microsoft Corporation. All rights reserved. // ///////////////////////////////////////////////////////////////////////////////// (function(el, args) { if ( !args ) { args = {}; } var dom = Msn.DOM; var d = document; var w = window; //hide the network navigation more links var elMoreDIV = d.getElementById( "more" ); // div containing network navigation links elMoreDIV.style.display = "none"; //create more Link var elMoreUL = d.getElementById( "xnav" ); var elMoreLI = d.createElement( "li" ); var elMoreA = d.createElement( "a" ); elMoreA.href = "#"; elMoreA.className = "expand"; elMoreA.innerHTML = argWithDefault(args.more,"more"); elMoreLI.appendChild( elMoreA ); elMoreUL.appendChild( elMoreLI ); //bind toggle function to click event of more link toggle.hook(elMoreA, "click"); // click event for more link, toggles display of cross-network navigation div function toggle(ev) { var state = elMoreDIV.style.display; var expand; if (state == "block") { state = "none"; expand = "expand"; elMoreLI.className = ""; } else { state = "block"; expand = "collapse"; elMoreLI.className = "last"; } elMoreDIV.style.display = state; elMoreA.className = expand; ev = dom.Event(ev); return dom.CancelEvent( ev ); } this.dispose = function() { el = null; elMoreDIV = null; elMoreUL = null; elMoreLI = null; elMoreA = null; }; function argWithDefault( arg, def ) { return (typeof arg != "undefined" ? arg : def) } }).as("Msn.Header"); (function(el, args) { if (!args) { args = {}; } //shortcuts var dom = Msn.DOM; var d = document; var w = window; var form = el; //Init variables from args var siteSearchOn = argWithDefault(args.siteSearchOn, "false"); var searchUrl = argWithDefault(args.searchUrl, ""); var searchParam = argWithDefault(args.searchParam, ""); var searchParams = argWithDefault(args.searchParams, ""); var drpButtonImgURL = argWithDefault(args.drpButtonImgURL, "decoration/dropdownButton_FOX.gif"); var drpButtonMouseoverImgURL = argWithDefault(args.drpButtonOverImgURL, "decoration/dropdownButton_over_FOX.gif"); var siteText = argWithDefault(args.sitetext, "Search this site"); var scopesDiv = d.getElementById("ntwscopes"); //if site search not enabled, scope default to web var scope = siteSearchOn == "true" ? "site" : "web"; //create scope tabs if sitesearch is on if (scope == "site") { createScopeDropdown(); } //IE 6 png treatment var onepxgif = argWithDefault(args.onepxgif, "http://blstc.msn.com/br/gbl/css/8/decoration/t.gif"); var nav = navigator.userAgent, index = nav.indexOf("MSIE"); if (index >= 0) { // we have MSIE in the user agent string. parse the float value // immediately following it. if (parseFloat(nav.substring(index + 4)) < 7 && parseFloat(nav.substring(index + 4)) > 5) { pngfix(d.getElementById("leftcorner"), "bgimage", "image"); pngfix(d.getElementById("searchform"), "bgimage", "scale"); pngfix(d.getElementById("ntwlogo"), "bgimage", "scale"); pngfix(d.getElementById("logoimg"), "img", "image"); pngfix(d.getElementById("rightcorner"), "bgimage", "image"); } } // pointer to dom objects var elSitesearchDiv; var elSiteLink; var elWebLink; var elWebDiv; var elSpyglass = d.getElementById("spyglass"); if (scope == "site") { elSpyglass.alt = "Site"; } var elSearchText = d.getElementById("q"); var elDrpButton; var elScopesContainer; var scopeClicked = false; // boolean used to check whether the elDrpButton's blur event is caused by clicking on scopes //some varaible to use in functions var searchTerm = ""; var helperText = (scope == "web") ? argWithDefault(args.helpertext, "") : siteText; elSearchText.className = ""; elSearchText.value = helperText; //set the inputbox to helpertext. //hook up events doSpyglass.hook(elSpyglass, "click"); focusTxtbox.hook(elSearchText, "focus"); blurTxtbox.hook(elSearchText, "blur"); var formOnSubmit = form.onsubmit; //grab onsubmit function form.onsubmit = function() { if (elSearchText.value == helperText) { elSearchText.value = ""; } return formOnSubmit(form); }; // When more than one input type=submit is present, IE processes enter as a click to the // web search button, not the site search button. We hook doEnter to the keypress event to correct. doEnter.hook(elSearchText, "keypress"); function createScopeDropdown() { elDrpButton = d.createElement("input"); elDrpButton.type = "image"; elDrpButton.id = "drpbutton"; elDrpButton.src = drpButtonImgURL; d.getElementById("searchform").style.width = "300px"; //hard code the width here because we don't want to have this button rendered when js is disabled. d.getElementById("searchform").appendChild(elDrpButton); var webText = argWithDefault(args.webtext, "Search web"); elScopesContainer = d.createElement("div"); elScopesContainer.className = "scopescontainer"; // IE6 need this extra container to render correctly when collapsed. elScopesContainer.style.display = "none" elSitesearchDiv = d.createElement("div"); elSitesearchDiv.className = "selected"; elSiteLink = d.createElement("a"); elSiteLink.innerHTML = siteText; elSiteLink.href = searchUrl; elSitesearchDiv.appendChild(elSiteLink); elWebDiv = d.createElement("div"); elWebLink = d.createElement("a"); elWebLink.innerHTML = webText; elWebLink.href = form.action; elWebDiv.appendChild(elWebLink); scopesDiv.appendChild(elScopesContainer); elScopesContainer.appendChild(elSitesearchDiv); elScopesContainer.appendChild(elWebDiv); //hookup events doDrpButtonMouseover.hook(elDrpButton, "mouseover"); doDrpButtonMouseout.hook(elDrpButton, "mouseout"); doDrpButtonBlur.hook(elDrpButton, "blur"); doDrpButton.hook(elDrpButton, "click"); doSiteSearch.hook(elSiteLink, "click"); doWebSearch.hook(elWebLink, "click"); } function pngfix(elem, mode, method) { if (!elem) return; var imagesrc; if (mode == "bgimage") { imagesrc = elem.currentStyle.backgroundImage; } else if (mode == "img") { imagesrc = elem.src; } if (imagesrc == "") return; var pngsrc = imagesrc.search(new RegExp('(http://.+\\.png)', 'i')) === -1 ? "" : RegExp.$1; if (pngsrc.length > 0) { if (mode == "bgimage") { elem.style.backgroundImage = "none"; } else if (mode == "img") { elem.src = onepxgif; } elem.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true', sizingMethod='" + method + "', src='" + pngsrc + "')"; } } function doDrpButtonMouseover(ev) { elDrpButton.src = drpButtonMouseoverImgURL; } function doDrpButtonMouseout(ev) { elDrpButton.src = drpButtonImgURL; } function doDrpButtonBlur(ev) { setTimeout( //need to settimeout so we can check the blur is actually coming from clicking scopes links in the scope options dropdown. function() { if (!scopeClicked) { elScopesContainer.style.display = "none"; } } , 500); } function doDrpButton(ev) { if (elScopesContainer.style.display == "none") { elScopesContainer.style.display = "block"; } else { elScopesContainer.style.display = "none"; } if (dom.Target(ev) == elDrpButton) { ev = dom.Event(ev); return dom.CancelEvent(ev); //need to cancel event to stop form submission } } function doEnter(ev) { if (ev.keyCode == 13) { switch (scope) { //Use switch for more tabs in the future //Do not need t a case for web, since it textbox in the form default to submit when enter. case "site": doSiteSearch(null); ev = dom.Event(ev); return dom.CancelEvent(ev); //need to cancel event to stop form submission break; } } } function doSiteSearch(ev) { if (ev) scopeClicked = true; var url = searchUrl + "?" + searchParam + "=" + getSearchTerm(); if (searchParams) { url = url + "&" + searchParams.replace(/&/g, "&"); } if (ev && dom.Target(ev).tagName.toLowerCase() == "a") { dom.Target(ev).href = url; //set href with search term, so omniture linktrack will have search term tracked. } else { window.top.location.href = url; //for doSiteSearch(null) to work } } function doWebSearch(ev) { if (ev !== null) { scopeClicked = true; if (dom.Target(ev).tagName.toLowerCase() == "a") { dom.Target(ev).href = "#"; } } if (elSearchText.value == helperText) { elSearchText.value = ""; } formOnSubmit(form); form.submit(); } function getSearchTerm() { searchTerm = elSearchText ? elSearchText.value : ""; searchTerm = (searchTerm == helperText) ? "" : searchTerm; return encodeURIComponent(searchTerm); } function doSpyglass(ev) { switch (scope) { case "site": form.onsubmit = cancelSubmit; //cancel form submit, doSiteSearch instead. doSiteSearch(null); break; case "web": doWebSearch(null); break; } } function cancelSubmit(ev) { ev = dom.Event(ev); return dom.CancelEvent(ev); } function focusTxtbox(ev) { elSearchText.className = "typing"; if (elSearchText.value == helperText) elSearchText.value = ""; } function blurTxtbox(ev) { if (elSearchText.value.trim() == "") { elSearchText.className = ""; elSearchText.value = helperText; } } this.dispose = function() { //unhook events to avoid MM leak if (scope = "site") { doSiteSearch.unhook(elSiteLink, "click"); doWebSearch.unhook(elWebLink, "click"); } doSpyglass.unhook(elSpyglass, "click"); focusTxtbox.unhook(elSearchText, "focus"); blurTxtbox.unhook(elSearchText, "blur"); doEnter.unhook(elSearchText, "keypress"); doDrpButtonMouseover.unhook(elDrpButton, "mouseover"); doDrpButtonMouseout.unhook(elDrpButton, "mouseout"); doDrpButtonBlur.unhook(elDrpButton, "blur"); doDrpButton.unhook(elDrpButton, "click"); form.onsubmit = null; el = null; }; //helper function function argWithDefault(arg, def) { return (typeof arg != "undefined" ? arg : def) } }).as("Msn.SiteSearch"); /* End: MSN Search Header (FSCOM-4763) */ Msn.SiteSearch.bind("#search", { searchParam: "sp_q", searchParams: "", searchUrl: "http://msn.foxsports.com/search", sitetext: "Search FOX Sports", webtext: "Search web", siteSearchOn: "true", helpertext: "", onepxgif: "http://blstc.msn.com/br//gbl/css/9/decoration/t.gif", drpButtonImgURL: "http://msn.foxsports.com/fe/img/MSN/Header/Search/dropdownButton_FOX.gif", drpButtonOverImgURL: "http://msn.foxsports.com/fe/img/MSN/Header/Search/dropdownButton_over_FOX.gif" }); document.write('
'); // 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(' '); document.write(''); } else { document.write(''); } 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 = ''; for ( i = 0 ; i < tt.length ; i++ ) { var ff = eval("nav_" + tt[i][1]); var divNum = "gn" + tt[i][1]; if (tt[i][0] == 1) { var strDiv = "
"; } else { var strDiv = "
"; } strDiv += '
'; for ( j = 0 ; j < ff.length ; j++ ) { if (ff[j][2]) { strDiv += "
'; document.write(strDiv); } // ******************************** include style sheet ************************************/ document.write(''); Initms(); document.write('
');