473,403 Members | 2,354 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

Help needed with Javascript Hide/Unhide

Hello

I have the following code but need some help on it. The idea of the code is the main sections ie Service Management are viewable when the page is loaded and by clicking on the main titles/headings or clicking on the 'expand all' will allow you to view the items underneath each title/heading.


The page seems to be broken at the Incident and Request Management title/heading section as shown in the image attached.

Can anyone help /

Thanks

-------


Expand|Select|Wrap|Line Numbers
  1. <p>
  2. <link href="./treeview.css" rel="stylesheet" /><script type="text/javascript">(function(){
  3. /*
  4.  * jQuery 1.2.2b2 - New Wave Javascript
  5.  *
  6.  * Copyright (c) 2007 John Resig (jquery.com)
  7.  * Dual licensed under the MIT (MIT-LICENSE.txt)
  8.  * and GPL (GPL-LICENSE.txt) licenses.
  9.  *
  10.  * $Date: 2007-12-20 14:36:56 +0100 (Don, 20 Dez 2007) $
  11.  * $Rev: 4251 $
  12.  */
  13.  
  14. // Map over jQuery in case of overwrite
  15. if ( window.jQuery )
  16.     var _jQuery = window.jQuery;
  17.  
  18. var jQuery = window.jQuery = function( selector, context ) {
  19.     // The jQuery object is actually just the init constructor 'enhanced'
  20.     return new jQuery.prototype.init( selector, context );
  21. };
  22.  
  23. // Map over the $ in case of overwrite
  24. if ( window.$ )
  25.     var _$ = window.$;
  26.  
  27. // Map the jQuery namespace to the '$' one
  28. window.$ = jQuery;
  29.  
  30. // A simple way to check for HTML strings or ID strings
  31. // (both of which we optimize for)
  32. var quickExpr = /^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;
  33.  
  34. // Is it a simple selector
  35. var isSimple = /^.[^:#\[\.]*$/;
  36.  
  37. jQuery.fn = jQuery.prototype = {
  38.     init: function( selector, context ) {
  39.         // Make sure that a selection was provided
  40.         selector = selector || document;
  41.  
  42.         // Handle $(DOMElement)
  43.         if ( selector.nodeType ) {
  44.             this[0] = selector;
  45.             this.length = 1;
  46.             return this;
  47.  
  48.         // Handle HTML strings
  49.         } else if ( typeof selector == "string" ) {
  50.             // Are we dealing with HTML string or an ID?
  51.             var match = quickExpr.exec( selector );
  52.  
  53.             // Verify a match, and that no context was specified for #id
  54.             if ( match && (match[1] || !context) ) {
  55.  
  56.                 // HANDLE: $(html) -> $(array)
  57.                 if ( match[1] )
  58.                     selector = jQuery.clean( [ match[1] ], context );
  59.  
  60.                 // HANDLE: $("#id")
  61.                 else {
  62.                     var elem = document.getElementById( match[3] );
  63.  
  64.                     // Make sure an element was located
  65.                     if ( elem )
  66.                         // Handle the case where IE and Opera return items
  67.                         // by name instead of ID
  68.                         if ( elem.id != match[3] )
  69.                             return jQuery().find( selector );
  70.  
  71.                         // Otherwise, we inject the element directly into the jQuery object
  72.                         else {
  73.                             this[0] = elem;
  74.                             this.length = 1;
  75.                             return this;
  76.                         }
  77.  
  78.                     else
  79.                         selector = [];
  80.                 }
  81.  
  82.             // HANDLE: $(expr, [context])
  83.             // (which is just equivalent to: $(content).find(expr)
  84.             } else
  85.                 return new jQuery( context ).find( selector );
  86.  
  87.         // HANDLE: $(function)
  88.         // Shortcut for document ready
  89.         } else if ( jQuery.isFunction( selector ) )
  90.             return new jQuery( document )[ jQuery.fn.ready ? "ready" : "load" ]( selector );
  91.  
  92.         return this.setArray(
  93.             // HANDLE: $(array)
  94.             selector.constructor == Array && selector ||
  95.  
  96.             // HANDLE: $(arraylike)
  97.             // Watch for when an array-like object, contains DOM nodes, is passed in as the selector
  98.             (selector.jquery || selector.length && selector != window && !selector.nodeType && selector[0] != undefined && selector[0].nodeType) && jQuery.makeArray( selector ) ||
  99.  
  100.             // HANDLE: $(*)
  101.             [ selector ] );
  102.     },
  103.  
  104.     // The current version of jQuery being used
  105.     jquery: "@VERSION",
  106.  
  107.     // The number of elements contained in the matched element set
  108.     size: function() {
  109.         return this.length;
  110.     },
  111.  
  112.     // The number of elements contained in the matched element set
  113.     length: 0,
  114.  
  115.     // Get the Nth element in the matched element set OR
  116.     // Get the whole matched element set as a clean array
  117.     get: function( num ) {
  118.         return num == undefined ?
  119.  
  120.             // Return a 'clean' array
  121.             jQuery.makeArray( this ) :
  122.  
  123.             // Return just the object
  124.             this[ num ];
  125.     },
  126.  
  127.     // Take an array of elements and push it onto the stack
  128.     // (returning the new matched element set)
  129.     pushStack: function( elems ) {
  130.         // Build a new jQuery matched element set
  131.         var ret = jQuery( elems );
  132.  
  133.         // Add the old object onto the stack (as a reference)
  134.         ret.prevObject = this;
  135.  
  136.         // Return the newly-formed element set
  137.         return ret;
  138.     },
  139.  
  140.     // Force the current matched set of elements to become
  141.     // the specified array of elements (destroying the stack in the process)
  142.     // You should use pushStack() in order to do this, but maintain the stack
  143.     setArray: function( elems ) {
  144.         // Resetting the length to 0, then using the native Array push
  145.         // is a super-fast way to populate an object with array-like properties
  146.         this.length = 0;
  147.         Array.prototype.push.apply( this, elems );
  148.  
  149.         return this;
  150.     },
  151.  
  152.     // Execute a callback for every element in the matched set.
  153.     // (You can seed the arguments with an array of args, but this is
  154.     // only used internally.)
  155.     each: function( callback, args ) {
  156.         return jQuery.each( this, callback, args );
  157.     },
  158.  
  159.     // Determine the position of an element within 
  160.     // the matched set of elements
  161.     index: function( elem ) {
  162.         var ret = -1;
  163.  
  164.         // Locate the position of the desired element
  165.         this.each(function(i){
  166.             if ( this == elem )
  167.                 ret = i;
  168.         });
  169.  
  170.         return ret;
  171.     },
  172.  
  173.     attr: function( name, value, type ) {
  174.         var options = name;
  175.  
  176.         // Look for the case where we're accessing a style value
  177.         if ( name.constructor == String )
  178.             if ( value == undefined )
  179.                 return this.length && jQuery[ type || "attr" ]( this[0], name ) || undefined;
  180.  
  181.             else {
  182.                 options = {};
  183.                 options[ name ] = value;
  184.             }
  185.  
  186.         // Check to see if we're setting style values
  187.         return this.each(function(i){
  188.             // Set all the styles
  189.             for ( name in options )
  190.                 jQuery.attr(
  191.                     type ?
  192.                         this.style :
  193.                         this,
  194.                     name, jQuery.prop( this, options[ name ], type, i, name )
  195.                 );
  196.         });
  197.     },
  198.  
  199.     css: function( key, value ) {
  200.         // ignore negative width and height values
  201.         if ( (key == 'width' || key == 'height') && parseFloat(value) < 0 )
  202.             value = undefined;
  203.         return this.attr( key, value, "curCSS" );
  204.     },
  205.  
  206.     text: function( text ) {
  207.         if ( typeof text != "object" && text != null )
  208.             return this.empty().append( (this[0] && this[0].ownerDocument || document).createTextNode( text ) );
  209.  
  210.         var ret = "";
  211.  
  212.         jQuery.each( text || this, function(){
  213.             jQuery.each( this.childNodes, function(){
  214.                 if ( this.nodeType != 8 )
  215.                     ret += this.nodeType != 1 ?
  216.                         this.nodeValue :
  217.                         jQuery.fn.text( [ this ] );
  218.             });
  219.         });
  220.  
  221.         return ret;
  222.     },
  223.  
  224.     wrapAll: function( html ) {
  225.         if ( this[0] )
  226.             // The elements to wrap the target around
  227.             jQuery( html, this[0].ownerDocument )
  228.                 .clone()
  229.                 .insertBefore( this[0] )
  230.                 .map(function(){
  231.                     var elem = this;
  232.  
  233.                     while ( elem.firstChild )
  234.                         elem = elem.firstChild;
  235.  
  236.                     return elem;
  237.                 })
  238.                 .append(this);
  239.  
  240.         return this;
  241.     },
  242.  
  243.     wrapInner: function( html ) {
  244.         return this.each(function(){
  245.             jQuery( this ).contents().wrapAll( html );
  246.         });
  247.     },
  248.  
  249.     wrap: function( html ) {
  250.         return this.each(function(){
  251.             jQuery( this ).wrapAll( html );
  252.         });
  253.     },
  254.  
  255.     append: function() {
  256.         return this.domManip(arguments, true, false, function(elem){
  257.             if (this.nodeType == 1)
  258.                 this.appendChild( elem );
  259.         });
  260.     },
  261.  
  262.     prepend: function() {
  263.         return this.domManip(arguments, true, true, function(elem){
  264.             if (this.nodeType == 1)
  265.                 this.insertBefore( elem, this.firstChild );
  266.         });
  267.     },
  268.  
  269.     before: function() {
  270.         return this.domManip(arguments, false, false, function(elem){
  271.             this.parentNode.insertBefore( elem, this );
  272.         });
  273.     },
  274.  
  275.     after: function() {
  276.         return this.domManip(arguments, false, true, function(elem){
  277.             this.parentNode.insertBefore( elem, this.nextSibling );
  278.         });
  279.     },
  280.  
  281.     end: function() {
  282.         return this.prevObject || jQuery( [] );
  283.     },
  284.  
  285.     find: function( selector ) {
  286.         var elems = jQuery.map(this, function(elem){
  287.             return jQuery.find( selector, elem );
  288.         });
  289.  
  290.         return this.pushStack( /[^+>] [^+>]/.test( selector ) || selector.indexOf("..") > -1 ?
  291.             jQuery.unique( elems ) :
  292.             elems );
  293.     },
  294.  
  295.     clone: function( events ) {
  296.         // Do the clone
  297.         var ret = this.map(function(){
  298.             if ( jQuery.browser.msie && !jQuery.isXMLDoc(this) ) {
  299.                 // IE copies events bound via attachEvent when
  300.                 // using cloneNode. Calling detachEvent on the
  301.                 // clone will also remove the events from the orignal
  302.                 // In order to get around this, we use innerHTML.
  303.                 // Unfortunately, this means some modifications to 
  304.                 // attributes in IE that are actually only stored 
  305.                 // as properties will not be copied (such as the
  306.                 // the name attribute on an input).
  307.                 var clone = this.cloneNode(true),
  308.                     container = document.createElement("div"),
  309.                     container2 = document.createElement("div");
  310.                 container.appendChild(clone);
  311.                 container2.innerHTML = container.innerHTML;
  312.                 return container2.firstChild;
  313.             } else
  314.                 return this.cloneNode(true);
  315.         });
  316.  
  317.         // Need to set the expando to null on the cloned set if it exists
  318.         // removeData doesn't work here, IE removes it from the original as well
  319.         // this is primarily for IE but the data expando shouldn't be copied over in any browser
  320.         var clone = ret.find("*").andSelf().each(function(){
  321.             if ( this[ expando ] != undefined )
  322.                 this[ expando ] = null;
  323.         });
  324.  
  325.         // Copy the events from the original to the clone
  326.         if ( events === true )
  327.             this.find("*").andSelf().each(function(i){
  328.                 var events = jQuery.data( this, "events" );
  329.  
  330.                 for ( var type in events )
  331.                     for ( var handler in events[ type ] )
  332.                         jQuery.event.add( clone[ i ], type, events[ type ][ handler ], events[ type ][ handler ].data );
  333.             });
  334.  
  335.         // Return the cloned set
  336.         return ret;
  337.     },
  338.  
  339.     filter: function( selector ) {
  340.         return this.pushStack(
  341.             jQuery.isFunction( selector ) &&
  342.             jQuery.grep(this, function(elem, i){
  343.                 return selector.call( elem, i );
  344.             }) ||
  345.  
  346.             jQuery.multiFilter( selector, this ) );
  347.     },
  348.  
  349.     not: function( selector ) {
  350.         if ( selector.constructor == String )
  351.             // test special case where just one selector is passed in
  352.             if ( isSimple.test( selector ) )
  353.                 return this.pushStack( jQuery.multiFilter( selector, this, true ) );
  354.             else
  355.                 selector = jQuery.multiFilter( selector, this );
  356.  
  357.         var isArrayLike = selector.length && selector[selector.length - 1] !== undefined && !selector.nodeType;
  358.         return this.filter(function() {
  359.             return isArrayLike ? jQuery.inArray( this, selector ) < 0 : this != selector;
  360.         });
  361.     },
  362.  
  363.     add: function( selector ) {
  364.         return !selector ? this : this.pushStack( jQuery.merge( 
  365.             this.get(),
  366.             selector.constructor == String ? 
  367.                 jQuery( selector ).get() :
  368.                 selector.length != undefined && (!selector.nodeName || jQuery.nodeName(selector, "form")) ?
  369.                     selector : [selector] ) );
  370.     },
  371.  
  372.     is: function( selector ) {
  373.         return selector ?
  374.             jQuery.multiFilter( selector, this ).length > 0 :
  375.             false;
  376.     },
  377.  
  378.     hasClass: function( selector ) {
  379.         return this.is( "." + selector );
  380.     },
  381.  
  382.     val: function( value ) {
  383.         if ( value == undefined ) {
  384.  
  385.             if ( this.length ) {
  386.                 var elem = this[0];
  387.  
  388.                 // We need to handle select boxes special
  389.                 if ( jQuery.nodeName( elem, "select" ) ) {
  390.                     var index = elem.selectedIndex,
  391.                         values = [],
  392.                         options = elem.options,
  393.                         one = elem.type == "select-one";
  394.  
  395.                     // Nothing was selected
  396.                     if ( index < 0 )
  397.                         return null;
  398.  
  399.                     // Loop through all the selected options
  400.                     for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) {
  401.                         var option = options[ i ];
  402.  
  403.                         if ( option.selected ) {
  404.                             // Get the specifc value for the option
  405.                             value = jQuery.browser.msie && !option.attributes.value.specified ? option.text : option.value;
  406.  
  407.                             // We don't need an array for one selects
  408.                             if ( one )
  409.                                 return value;
  410.  
  411.                             // Multi-Selects return an array
  412.                             values.push( value );
  413.                         }
  414.                     }
  415.  
  416.                     return values;
  417.  
  418.                 // Everything else, we just grab the value
  419.                 } else
  420.                     return (this[0].value || "").replace(/\r/g, "");
  421.  
  422.             }
  423.  
  424.             return undefined;
  425.         }
  426.  
  427.         return this.each(function(){
  428.             if ( this.nodeType != 1 )
  429.                 return;
  430.  
  431.             if ( value.constructor == Array && /radio|checkbox/.test( this.type ) )
  432.                 this.checked = (jQuery.inArray(this.value, value) >= 0 ||
  433.                     jQuery.inArray(this.name, value) >= 0);
  434.  
  435.             else if ( jQuery.nodeName( this, "select" ) ) {
  436.                 var values = value.constructor == Array ?
  437.                     value :
  438.                     [ value ];
  439.  
  440.                 jQuery( "option", this ).each(function(){
  441.                     this.selected = (jQuery.inArray( this.value, values ) >= 0 ||
  442.                         jQuery.inArray( this.text, values ) >= 0);
  443.                 });
  444.  
  445.                 if ( !values.length )
  446.                     this.selectedIndex = -1;
  447.  
  448.             } else
  449.                 this.value = value;
  450.         });
  451.     },
  452.  
  453.     html: function( value ) {
  454.         return value == undefined ?
  455.             (this.length ?
  456.                 this[0].innerHTML :
  457.                 null) :
  458.             this.empty().append( value );
  459.     },
  460.  
  461.     replaceWith: function( value ) {
  462.         return this.after( value ).remove();
  463.     },
  464.  
  465.     eq: function( i ) {
  466.         return this.slice( i, i + 1 );
  467.     },
  468.  
  469.     slice: function() {
  470.         return this.pushStack( Array.prototype.slice.apply( this, arguments ) );
  471.     },
  472.  
  473.     map: function( callback ) {
  474.         return this.pushStack( jQuery.map(this, function(elem, i){
  475.             return callback.call( elem, i, elem );
  476.         }));
  477.     },
  478.  
  479.     andSelf: function() {
  480.         return this.add( this.prevObject );
  481.     },
  482.  
  483.     domManip: function( args, table, reverse, callback ) {
  484.         var clone = this.length > 1, elems; 
  485.  
  486.         return this.each(function(){
  487.             if ( !elems ) {
  488.                 elems = jQuery.clean( args, this.ownerDocument );
  489.  
  490.                 if ( reverse )
  491.                     elems.reverse();
  492.             }
  493.  
  494.             var obj = this;
  495.  
  496.             if ( table && jQuery.nodeName( this, "table" ) && jQuery.nodeName( elems[0], "tr" ) )
  497.                 obj = this.getElementsByTagName("tbody")[0] || this.appendChild( this.ownerDocument.createElement("tbody") );
  498.  
  499.             var scripts = jQuery( [] );
  500.  
  501.             jQuery.each(elems, function(){
  502.                 var elem = clone ?
  503.                     jQuery( this ).clone( true )[0] :
  504.                     this;
  505.  
  506.                 // execute all scripts after the elements have been injected
  507.                 if ( jQuery.nodeName( elem, "script" ) ) {
  508.                     scripts = scripts.add( elem );
  509.                 } else {
  510.                     // Remove any inner scripts for later evaluation
  511.                     if ( elem.nodeType == 1 )
  512.                         scripts = scripts.add( jQuery( "script", elem ).remove() );
  513.  
  514.                     // Inject the elements into the document
  515.                     callback.call( obj, elem );
  516.                 }
  517.             });
  518.  
  519.             scripts.each( evalScript );
  520.         });
  521.     }
  522. };
  523.  
  524. // Give the init function the jQuery prototype for later instantiation
  525. jQuery.prototype.init.prototype = jQuery.prototype;
  526.  
  527. function evalScript( i, elem ) {
  528.     if ( elem.src )
  529.         jQuery.ajax({
  530.             url: elem.src,
  531.             async: false,
  532.             dataType: "script"
  533.         });
  534.  
  535.     else
  536.         jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" );
  537.  
  538.     if ( elem.parentNode )
  539.         elem.parentNode.removeChild( elem );
  540. }
  541.  
  542. jQuery.extend = jQuery.fn.extend = function() {
  543.     // copy reference to target object
  544.     var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options;
  545.  
  546.     // Handle a deep copy situation
  547.     if ( target.constructor == Boolean ) {
  548.         deep = target;
  549.         target = arguments[1] || {};
  550.         // skip the boolean and the target
  551.         i = 2;
  552.     }
  553.  
  554.     // Handle case when target is a string or something (possible in deep copy)
  555.     if ( typeof target != "object" && typeof target != "function" )
  556.         target = {};
  557.  
  558.     // extend jQuery itself if only one argument is passed
  559.     if ( length == 1 ) {
  560.         target = this;
  561.         i = 0;
  562.     }
  563.  
  564.     for ( ; i < length; i++ )
  565.         // Only deal with non-null/undefined values
  566.         if ( (options = arguments[ i ]) != null )
  567.             // Extend the base object
  568.             for ( var name in options ) {
  569.                 // Prevent never-ending loop
  570.                 if ( target === options[ name ] )
  571.                     continue;
  572.  
  573.                 // Recurse if we're merging object values
  574.                 if ( deep && options[ name ] && typeof options[ name ] == "object" && target[ name ] && !options[ name ].nodeType )
  575.                     target[ name ] = jQuery.extend( target[ name ], options[ name ] );
  576.  
  577.                 // Don't bring in undefined values
  578.                 else if ( options[ name ] != undefined )
  579.                     target[ name ] = options[ name ];
  580.  
  581.             }
  582.  
  583.     // Return the modified object
  584.     return target;
  585. };
  586.  
  587. var expando = "jQuery" + (new Date()).getTime(), uuid = 0, windowData = {};
  588.  
  589. // exclude the following css properties to add px
  590. var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i;
  591.  
  592. jQuery.extend({
  593.     noConflict: function( deep ) {
  594.         window.$ = _$;
  595.  
  596.         if ( deep )
  597.             window.jQuery = _jQuery;
  598.  
  599.         return jQuery;
  600.     },
  601.  
  602.     // This may seem like some crazy code, but trust me when I say that this
  603.     // is the only cross-browser way to do this. --John
  604.     isFunction: function( fn ) {
  605.         return !!fn && typeof fn != "string" && !fn.nodeName && 
  606.             fn.constructor != Array && /function/i.test( fn + "" );
  607.     },
  608.  
  609.     // check if an element is in a (or is an) XML document
  610.     isXMLDoc: function( elem ) {
  611.         return elem.documentElement && !elem.body ||
  612.             elem.tagName && elem.ownerDocument && !elem.ownerDocument.body;
  613.     },
  614.  
  615.     // Evalulates a script in a global context
  616.     globalEval: function( data ) {
  617.         data = jQuery.trim( data );
  618.  
  619.         if ( data ) {
  620.             // Inspired by code by Andrea Giammarchi
  621.             // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html
  622.             var head = document.getElementsByTagName("head")[0] || document.documentElement,
  623.                 script = document.createElement("script");
  624.  
  625.             script.type = "text/javascript";
  626.             if ( jQuery.browser.msie )
  627.                 script.text = data;
  628.             else
  629.                 script.appendChild( document.createTextNode( data ) );
  630.  
  631.             head.appendChild( script );
  632.             head.removeChild( script );
  633.         }
  634.     },
  635.  
  636.     nodeName: function( elem, name ) {
  637.         return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase();
  638.     },
  639.  
  640.     cache: {},
  641.  
  642.     data: function( elem, name, data ) {
  643.         elem = elem == window ?
  644.             windowData :
  645.             elem;
  646.  
  647.         var id = elem[ expando ];
  648.  
  649.         // Compute a unique ID for the element
  650.         if ( !id ) 
  651.             id = elem[ expando ] = ++uuid;
  652.  
  653.         // Only generate the data cache if we're
  654.         // trying to access or manipulate it
  655.         if ( name && !jQuery.cache[ id ] )
  656.             jQuery.cache[ id ] = {};
  657.  
  658.         // Prevent overriding the named cache with undefined values
  659.         if ( data != undefined )
  660.             jQuery.cache[ id ][ name ] = data;
  661.  
  662.         // Return the named cache data, or the ID for the element    
  663.         return name ?
  664.             jQuery.cache[ id ][ name ] :
  665.             id;
  666.     },
  667.  
  668.     removeData: function( elem, name ) {
  669.         elem = elem == window ?
  670.             windowData :
  671.             elem;
  672.  
  673.         var id = elem[ expando ];
  674.  
  675.         // If we want to remove a specific section of the element's data
  676.         if ( name ) {
  677.             if ( jQuery.cache[ id ] ) {
  678.                 // Remove the section of cache data
  679.                 delete jQuery.cache[ id ][ name ];
  680.  
  681.                 // If we've removed all the data, remove the element's cache
  682.                 name = "";
  683.  
  684.                 for ( name in jQuery.cache[ id ] )
  685.                     break;
  686.  
  687.                 if ( !name )
  688.                     jQuery.removeData( elem );
  689.             }
  690.  
  691.         // Otherwise, we want to remove all of the element's data
  692.         } else {
  693.             // Clean up the element expando
  694.             try {
  695.                 delete elem[ expando ];
  696.             } catch(e){
  697.                 // IE has trouble directly removing the expando
  698.                 // but it's ok with using removeAttribute
  699.                 if ( elem.removeAttribute )
  700.                     elem.removeAttribute( expando );
  701.             }
  702.  
  703.             // Completely remove the data cache
  704.             delete jQuery.cache[ id ];
  705.         }
  706.     },
  707.  
  708.     // args is for internal usage only
  709.     each: function( object, callback, args ) {
  710.         if ( args ) {
  711.             if ( object.length == undefined )
  712.                 for ( var name in object )
  713.                     callback.apply( object[ name ], args );
  714.             else
  715.                 for ( var i = 0, length = object.length; i < length; i++ )
  716.                     if ( callback.apply( object[ i ], args ) === false )
  717.                         break;
  718.  
  719.         // A special, fast, case for the most common use of each
  720.         } else {
  721.             if ( object.length == undefined )
  722.                 for ( var name in object )
  723.                     callback.call( object[ name ], name, object[ name ] );
  724.             else
  725.                 for ( var i = 0, length = object.length, value = object[0]; 
  726.                     i < length && callback.call( value, i, value ) !== false; value = object[++i] ){}
  727.         }
  728.  
  729.         return object;
  730.     },
  731.  
  732.     prop: function( elem, value, type, i, name ) {
  733.             // Handle executable functions
  734.             if ( jQuery.isFunction( value ) )
  735.                 value = value.call( elem, i );
  736.  
  737.             // Handle passing in a number to a CSS property
  738.             return value && value.constructor == Number && type == "curCSS" && !exclude.test( name ) ?
  739.                 value + "px" :
  740.                 value;
  741.     },
  742.  
  743.     className: {
  744.         // internal only, use addClass("class")
  745.         add: function( elem, classNames ) {
  746.             jQuery.each((classNames || "").split(/\s+/), function(i, className){
  747.                 if ( elem.nodeType == 1 && !jQuery.className.has( elem.className, className ) )
  748.                     elem.className += (elem.className ? " " : "") + className;
  749.             });
  750.         },
  751.  
  752.         // internal only, use removeClass("class")
  753.         remove: function( elem, classNames ) {
  754.             if (elem.nodeType == 1)
  755.                 elem.className = classNames != undefined ?
  756.                     jQuery.grep(elem.className.split(/\s+/), function(className){
  757.                         return !jQuery.className.has( classNames, className );    
  758.                     }).join(" ") :
  759.                     "";
  760.         },
  761.  
  762.         // internal only, use is(".class")
  763.         has: function( elem, className ) {
  764.             return jQuery.inArray( className, (elem.className || elem).toString().split(/\s+/) ) > -1;
  765.         }
  766.     },
  767.  
  768.     // A method for quickly swapping in/out CSS properties to get correct calculations
  769.     swap: function( elem, options, callback ) {
  770.         var old = {};
  771.         // Remember the old values, and insert the new ones
  772.         for ( var name in options ) {
  773.             old[ name ] = elem.style[ name ];
  774.             elem.style[ name ] = options[ name ];
  775.         }
  776.  
  777.         callback.call( elem );
  778.  
  779.         // Revert the old values
  780.         for ( var name in options )
  781.             elem.style[ name ] = old[ name ];
  782.     },
  783.  
  784.     css: function( elem, name, force ) {
  785.         if ( name == "width" || name == "height" ) {
  786.             var val, props = { position: "absolute", visibility: "hidden", display:"block" }, which = name == "width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ];
  787.  
  788.             function getWH() {
  789.                 val = name == "width" ? elem.offsetWidth : elem.offsetHeight;
  790.                 var padding = 0, border = 0;
  791.                 jQuery.each( which, function() {
  792.                     padding += parseFloat(jQuery.curCSS( elem, "padding" + this, true)) || 0;
  793.                     border += parseFloat(jQuery.curCSS( elem, "border" + this + "Width", true)) || 0;
  794.                 });
  795.                 val -= Math.round(padding + border);
  796.             }
  797.  
  798.             if ( jQuery(elem).is(":visible") )
  799.                 getWH();
  800.             else
  801.                 jQuery.swap( elem, props, getWH );
  802.  
  803.             return Math.max(0, val);
  804.         }
  805.  
  806.         return jQuery.curCSS( elem, name, force );
  807.     },
  808.  
  809.     curCSS: function( elem, name, force ) {
  810.         var ret;
  811.  
  812.         // A helper method for determining if an element's values are broken
  813.         function color( elem ) {
  814.             if ( !jQuery.browser.safari )
  815.                 return false;
  816.  
  817.             var ret = document.defaultView.getComputedStyle( elem, null );
  818.             return !ret || ret.getPropertyValue("color") == "";
  819.         }
  820.  
  821.         // We need to handle opacity special in IE
  822.         if ( name == "opacity" && jQuery.browser.msie ) {
  823.             ret = jQuery.attr( elem.style, "opacity" );
  824.  
  825.             return ret == "" ?
  826.                 "1" :
  827.                 ret;
  828.         }
  829.         // Opera sometimes will give the wrong display answer, this fixes it, see #2037
  830.         if ( jQuery.browser.opera && name == "display" ) {
  831.             var save = elem.style.display;
  832.             elem.style.display = "block";
  833.             elem.style.display = save;
  834.         }
  835.  
  836.         // Make sure we're using the right name for getting the float value
  837.         if ( name.match( /float/i ) )
  838.             name = styleFloat;
  839.  
  840.         if ( !force && elem.style[ name ] )
  841.             ret = elem.style[ name ];
  842.  
  843.         else if ( document.defaultView && document.defaultView.getComputedStyle ) {
  844.  
  845.             // Only "float" is needed here
  846.             if ( name.match( /float/i ) )
  847.                 name = "float";
  848.  
  849.             name = name.replace( /([A-Z])/g, "-$1" ).toLowerCase();
  850.  
  851.             var getComputedStyle = document.defaultView.getComputedStyle( elem, null );
  852.  
  853.             if ( getComputedStyle && !color( elem ) )
  854.                 ret = getComputedStyle.getPropertyValue( name );
  855.  
  856.             // If the element isn't reporting its values properly in Safari
  857.             // then some display: none elements are involved
  858.             else {
  859.                 var swap = [], stack = [];
  860.  
  861.                 // Locate all of the parent display: none elements
  862.                 for ( var a = elem; a && color(a); a = a.parentNode )
  863.                     stack.unshift(a);
  864.  
  865.                 // Go through and make them visible, but in reverse
  866.                 // (It would be better if we knew the exact display type that they had)
  867.                 for ( var i = 0; i < stack.length; i++ )
  868.                     if ( color( stack[ i ] ) ) {
  869.                         swap[ i ] = stack[ i ].style.display;
  870.                         stack[ i ].style.display = "block";
  871.                     }
  872.  
  873.                 // Since we flip the display style, we have to handle that
  874.                 // one special, otherwise get the value
  875.                 ret = name == "display" && swap[ stack.length - 1 ] != null ?
  876.                     "none" :
  877.                     ( getComputedStyle && getComputedStyle.getPropertyValue( name ) ) || "";
  878.  
  879.                 // Finally, revert the display styles back
  880.                 for ( var i = 0; i < swap.length; i++ )
  881.                     if ( swap[ i ] != null )
  882.                         stack[ i ].style.display = swap[ i ];
  883.             }
  884.  
  885.             // We should always get a number back from opacity
  886.             if ( name == "opacity" && ret == "" )
  887.                 ret = "1";
  888.  
  889.         } else if ( elem.currentStyle ) {
  890.             var camelCase = name.replace(/\-(\w)/g, function(all, letter){
  891.                 return letter.toUpperCase();
  892.             });
  893.  
  894.             ret = elem.currentStyle[ name ] || elem.currentStyle[ camelCase ];
  895.  
  896.             // From the awesome hack by Dean Edwards
  897.             // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291
  898.  
  899.             // If we're not dealing with a regular pixel number
  900.             // but a number that has a weird ending, we need to convert it to pixels
  901.             if ( !/^\d+(px)?$/i.test( ret ) && /^\d/.test( ret ) ) {
  902.                 // Remember the original values
  903.                 var style = elem.style.left, runtimeStyle = elem.runtimeStyle.left;
  904.  
  905.                 // Put in the new values to get a computed value out
  906.                 elem.runtimeStyle.left = elem.currentStyle.left;
  907.                 elem.style.left = ret || 0;
  908.                 ret = elem.style.pixelLeft + "px";
  909.  
  910.                 // Revert the changed values
  911.                 elem.style.left = style;
  912.                 elem.runtimeStyle.left = runtimeStyle;
  913.             }
  914.         }
  915.  
  916.         return ret;
  917.     },
  918.  
  919.     clean: function( elems, context ) {
  920.         var ret = [];
  921.         context = context || document;
  922.         // !context.createElement fails in IE with an error but returns typeof 'object'
  923.         if (typeof context.createElement == 'undefined') 
  924.             context = context.ownerDocument || context[0] && context[0].ownerDocument || document;
  925.  
  926.         jQuery.each(elems, function(i, elem){
  927.             if ( !elem )
  928.                 return;
  929.  
  930.             if ( elem.constructor == Number )
  931.                 elem = elem.toString();
  932.  
  933.             // Convert html string into DOM nodes
  934.             if ( typeof elem == "string" ) {
  935.                 // Fix "XHTML"-style tags in all browsers
  936.                 elem = elem.replace(/(<(\w+)[^>]*?)\/>/g, function(all, front, tag){
  937.                     return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area)$/i) ?
  938.                         all :
  939.                         front + "></" + tag + ">";
  940.                 });
  941.  
  942.                 // Trim whitespace, otherwise indexOf won't work as expected
  943.                 var tags = jQuery.trim( elem ).toLowerCase(), div = context.createElement("div");
  944.  
  945.                 var wrap =
  946.                     // option or optgroup
  947.                     !tags.indexOf("<opt") &&
  948.                     [ 1, "<select multiple='multiple'>", "</select>" ] ||
  949.  
  950.                     !tags.indexOf("<leg") &&
  951.                     [ 1, "<fieldset>", "</fieldset>" ] ||
  952.  
  953.                     tags.match(/^<(thead|tbody|tfoot|colg|cap)/) &&
  954.                     [ 1, "<table>", "</table>" ] ||
  955.  
  956.                     !tags.indexOf("<tr") &&
  957.                     [ 2, "<table><tbody>", "</tbody></table>" ] ||
  958.  
  959.                      // <thead> matched above
  960.                     (!tags.indexOf("<td") || !tags.indexOf("<th")) &&
  961.                     [ 3, "<table><tbody><tr>", "</tr></tbody></table>" ] ||
  962.  
  963.                     !tags.indexOf("<col") &&
  964.                     [ 2, "<table><tbody></tbody><colgroup>", "</colgroup></table>" ] ||
  965.  
  966.                     // IE can't serialize <link> and <script> tags normally
  967.                     jQuery.browser.msie &&
  968.                     [ 1, "div<div>", "</div>" ] ||
  969.  
  970.                     [ 0, "", "" ];
  971.  
  972.                 // Go to html and back, then peel off extra wrappers
  973.                 div.innerHTML = wrap[1] + elem + wrap[2];
  974.  
  975.                 // Move to the right depth
  976.                 while ( wrap[0]-- )
  977.                     div = div.lastChild;
  978.  
  979.                 // Remove IE's autoinserted <tbody> from table fragments
  980.                 if ( jQuery.browser.msie ) {
  981.  
  982.                     // String was a <table>, *may* have spurious <tbody>
  983.                     var tbody = !tags.indexOf("<table") && tags.indexOf("<tbody") < 0 ?
  984.                         div.firstChild && div.firstChild.childNodes :
  985.  
  986.                         // String was a bare <thead> or <tfoot>
  987.                         wrap[1] == "<table>" && tags.indexOf("<tbody") < 0 ?
  988.                             div.childNodes :
  989.                             [];
  990.  
  991.                     for ( var j = tbody.length - 1; j >= 0 ; --j )
  992.                         if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length )
  993.                             tbody[ j ].parentNode.removeChild( tbody[ j ] );
  994.  
  995.                     // IE completely kills leading whitespace when innerHTML is used    
  996.                     if ( /^\s/.test( elem ) )    
  997.                         div.insertBefore( context.createTextNode( elem.match(/^\s*/)[0] ), div.firstChild );
  998.  
  999.                 }
  1000.  
  1001.                 elem = jQuery.makeArray( div.childNodes );
  1002.             }
  1003.  
  1004.             if ( elem.length === 0 && (!jQuery.nodeName( elem, "form" ) && !jQuery.nodeName( elem, "select" )) )
  1005.                 return;
  1006.  
  1007.             if ( elem[0] == undefined || jQuery.nodeName( elem, "form" ) || elem.options )
  1008.                 ret.push( elem );
  1009.  
  1010.             else
  1011.                 ret = jQuery.merge( ret, elem );
  1012.  
  1013.         });
  1014.  
  1015.         return ret;
  1016.     },
  1017.  
  1018.     attr: function( elem, name, value ) {
  1019.         // don't set attributes on text and comment nodes
  1020.         if (!elem || elem.nodeType == 3 || elem.nodeType == 8)
  1021.             return undefined;
  1022.  
  1023.         var fix = jQuery.isXMLDoc( elem ) ?
  1024.             {} :
  1025.             jQuery.props;
  1026.  
  1027.         // Safari mis-reports the default selected property of a hidden option
  1028.         // Accessing the parent's selectedIndex property fixes it
  1029.         if ( name == "selected" && jQuery.browser.safari )
  1030.             elem.parentNode.selectedIndex;
  1031.  
  1032.         // Certain attributes only work when accessed via the old DOM 0 way
  1033.         if ( fix[ name ] ) {
  1034.             if ( value != undefined )
  1035.                 elem[ fix[ name ] ] = value;
  1036.  
  1037.             return elem[ fix[ name ] ];
  1038.  
  1039.         } else if ( jQuery.browser.msie && name == "style" )
  1040.             return jQuery.attr( elem.style, "cssText", value );
  1041.  
  1042.         else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName( elem, "form" ) && (name == "action" || name == "method") )
  1043.             return elem.getAttributeNode( name ).nodeValue;
  1044.  
  1045.         // IE elem.getAttribute passes even for style
  1046.         else if ( elem.tagName ) {
  1047.  
  1048.             if ( value != undefined ) {
  1049.                 // We can't allow the type property to be changed (since it causes problems in IE)
  1050.                 if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
  1051.                     throw "type property can't be changed";
  1052.  
  1053.                 // convert the value to a string (all browsers do this but IE) see #1070
  1054.                 elem.setAttribute( name, "" + value );
  1055.             }
  1056.  
  1057.             if ( jQuery.browser.msie && /href|src/.test( name ) && !jQuery.isXMLDoc( elem ) ) 
  1058.                 return elem.getAttribute( name, 2 );
  1059.  
  1060.             return elem.getAttribute( name );
  1061.  
  1062.         // elem is actually elem.style ... set the style
  1063.         } else {
  1064.             // IE actually uses filters for opacity
  1065.             if ( name == "opacity" && jQuery.browser.msie ) {
  1066.                 if ( value != undefined ) {
  1067.                     // IE has trouble with opacity if it does not have layout
  1068.                     // Force it by setting the zoom level
  1069.                     elem.zoom = 1; 
  1070.  
  1071.                     // Set the alpha filter to set the opacity
  1072.                     elem.filter = (elem.filter || "").replace( /alpha\([^)]*\)/, "" ) +
  1073.                         (parseFloat( value ).toString() == "NaN" ? "" : "alpha(opacity=" + value * 100 + ")");
  1074.                 }
  1075.  
  1076.                 return elem.filter && elem.filter.indexOf("opacity=") >= 0 ?
  1077.                     (parseFloat( elem.filter.match(/opacity=([^)]*)/)[1] ) / 100).toString() :
  1078.                     "";
  1079.             }
  1080.  
  1081.             name = name.replace(/-([a-z])/ig, function(all, letter){
  1082.                 return letter.toUpperCase();
  1083.             });
  1084.  
  1085.             if ( value != undefined )
  1086.                 elem[ name ] = value;
  1087.  
  1088.             return elem[ name ];
  1089.         }
  1090.     },
  1091.  
  1092.     trim: function( text ) {
  1093.         return (text || "").replace( /^\s+|\s+$/g, "" );
  1094.     },
  1095.  
  1096.     makeArray: function( array ) {
  1097.         var ret = [];
  1098.  
  1099.         // Need to use typeof to fight Safari childNodes crashes
  1100.         if ( typeof array != "array" )
  1101.             for ( var i = 0, length = array.length; i < length; i++ )
  1102.                 ret.push( array[ i ] );
  1103.         else
  1104.             ret = array.slice( 0 );
  1105.  
  1106.         return ret;
  1107.     },
  1108.  
  1109.     inArray: function( elem, array ) {
  1110.         for ( var i = 0, length = array.length; i < length; i++ )
  1111.             if ( array[ i ] == elem )
  1112.                 return i;
  1113.  
  1114.         return -1;
  1115.     },
  1116.  
  1117.     merge: function( first, second ) {
  1118.         // We have to loop this way because IE & Opera overwrite the length
  1119.         // expando of getElementsByTagName
  1120.  
  1121.         // Also, we need to make sure that the correct elements are being returned
  1122.         // (IE returns comment nodes in a '*' query)
  1123.         if ( jQuery.browser.msie ) {
  1124.             for ( var i = 0; second[ i ]; i++ )
  1125.                 if ( second[ i ].nodeType != 8 )
  1126.                     first.push( second[ i ] );
  1127.  
  1128.         } else
  1129.             for ( var i = 0; second[ i ]; i++ )
  1130.                 first.push( second[ i ] );
  1131.  
  1132.         return first;
  1133.     },
  1134.  
  1135.     unique: function( array ) {
  1136.         var ret = [], done = {};
  1137.  
  1138.         try {
  1139.  
  1140.             for ( var i = 0, length = array.length; i < length; i++ ) {
  1141.                 var id = jQuery.data( array[ i ] );
  1142.  
  1143.                 if ( !done[ id ] ) {
  1144.                     done[ id ] = true;
  1145.                     ret.push( array[ i ] );
  1146.                 }
  1147.             }
  1148.  
  1149.         } catch( e ) {
  1150.             ret = array;
  1151.         }
  1152.  
  1153.         return ret;
  1154.     },
  1155.  
  1156.     grep: function( elems, callback, inv ) {
  1157.         // If a string is passed in for the function, make a function
  1158.         // for it (a handy shortcut)
  1159.         if ( typeof callback == "string" )
  1160.             callback = eval("false||function(a,i){return " + callback + "}");
  1161.  
  1162.         var ret = [];
  1163.  
  1164.         // Go through the array, only saving the items
  1165.         // that pass the validator function
  1166.         for ( var i = 0, length = elems.length; i < length; i++ )
  1167.             if ( !inv && callback( elems[ i ], i ) || inv && !callback( elems[ i ], i ) )
  1168.                 ret.push( elems[ i ] );
  1169.  
  1170.         return ret;
  1171.     },
  1172.  
  1173.     map: function( elems, callback ) {
  1174.         var ret = [];
  1175.  
  1176.         // Go through the array, translating each of the items to their
  1177.         // new value (or values).
  1178.         for ( var i = 0, length = elems.length; i < length; i++ ) {
  1179.             var value = callback( elems[ i ], i );
  1180.  
  1181.             if ( value !== null && value != undefined ) {
  1182.                 if ( value.constructor != Array )
  1183.                     value = [ value ];
  1184.  
  1185.                 ret = ret.concat( value );
  1186.             }
  1187.         }
  1188.  
  1189.         return ret;
  1190.     }
  1191. });
  1192.  
  1193. var userAgent = navigator.userAgent.toLowerCase();
  1194.  
  1195. // Figure out what browser is being used
  1196. jQuery.browser = {
  1197.     version: (userAgent.match( /.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/ ) || [])[1],
  1198.     safari: /webkit/.test( userAgent ),
  1199.     opera: /opera/.test( userAgent ),
  1200.     msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
  1201.     mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
  1202. };
  1203.  
  1204. var styleFloat = jQuery.browser.msie ?
  1205.     "styleFloat" :
  1206.     "cssFloat";
  1207.  
  1208. jQuery.extend({
  1209.     // Check to see if the W3C box model is being used
  1210.     boxModel: !jQuery.browser.msie || document.compatMode == "CSS1Compat",
  1211.  
  1212.     props: {
  1213.         "for": "htmlFor",
  1214.         "class": "className",
  1215.         "float": styleFloat,
  1216.         cssFloat: styleFloat,
  1217.         styleFloat: styleFloat,
  1218.         innerHTML: "innerHTML",
  1219.         className: "className",
  1220.         value: "value",
  1221.         disabled: "disabled",
  1222.         checked: "checked",
  1223.         readonly: "readOnly",
  1224.         selected: "selected",
  1225.         maxlength: "maxLength",
  1226.         selectedIndex: "selectedIndex",
  1227.         defaultValue: "defaultValue",
  1228.         tagName: "tagName",
  1229.         nodeName: "nodeName"
  1230.     }
  1231. });
  1232.  
  1233. jQuery.each({
  1234.     parent: "elem.parentNode",
  1235.     parents: "jQuery.dir(elem,'parentNode')",
  1236.     next: "jQuery.nth(elem,2,'nextSibling')",
  1237.     prev: "jQuery.nth(elem,2,'previousSibling')",
  1238.     nextAll: "jQuery.dir(elem,'nextSibling')",
  1239.     prevAll: "jQuery.dir(elem,'previousSibling')",
  1240.     siblings: "jQuery.sibling(elem.parentNode.firstChild,elem)",
  1241.     children: "jQuery.sibling(elem.firstChild)",
  1242.     contents: "jQuery.nodeName(elem,'iframe')?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)"
  1243. }, function(name, fn){
  1244.     fn = eval("false||function(elem){return " + fn + "}");
  1245.  
  1246.     jQuery.fn[ name ] = function( selector ) {
  1247.         var ret = jQuery.map( this, fn );
  1248.  
  1249.         if ( selector && typeof selector == "string" )
  1250.             ret = jQuery.multiFilter( selector, ret );
  1251.  
  1252.         return this.pushStack( jQuery.unique( ret ) );
  1253.     };
  1254. });
  1255.  
  1256. jQuery.each({
  1257.     appendTo: "append",
  1258.     prependTo: "prepend",
  1259.     insertBefore: "before",
  1260.     insertAfter: "after",
  1261.     replaceAll: "replaceWith"
  1262. }, function(name, original){
  1263.     jQuery.fn[ name ] = function() {
  1264.         var args = arguments;
  1265.  
  1266.         return this.each(function(){
  1267.             for ( var i = 0, length = args.length; i < length; i++ )
  1268.                 jQuery( args[ i ] )[ original ]( this );
  1269.         });
  1270.     };
  1271. });
  1272.  
  1273. jQuery.each({
  1274.     removeAttr: function( name ) {
  1275.         jQuery.attr( this, name, "" );
  1276.         if (this.nodeType == 1) 
  1277.             this.removeAttribute( name );
  1278.     },
  1279.  
  1280.     addClass: function( classNames ) {
  1281.         jQuery.className.add( this, classNames );
  1282.     },
  1283.  
  1284.     removeClass: function( classNames ) {
  1285.         jQuery.className.remove( this, classNames );
  1286.     },
  1287.  
  1288.     toggleClass: function( classNames ) {
  1289.         jQuery.className[ jQuery.className.has( this, classNames ) ? "remove" : "add" ]( this, classNames );
  1290.     },
  1291.  
  1292.     remove: function( selector ) {
  1293.         if ( !selector || jQuery.filter( selector, [ this ] ).r.length ) {
  1294.             // Prevent memory leaks
  1295.             jQuery( "*", this ).add(this).each(function(){
  1296.                 jQuery.event.remove(this);
  1297.                 jQuery.removeData(this);
  1298.             });
  1299.             if (this.parentNode)
  1300.                 this.parentNode.removeChild( this );
  1301.         }
  1302.     },
  1303.  
  1304.     empty: function() {
  1305.         // Remove element nodes and prevent memory leaks
  1306.         jQuery( ">*", this ).remove();
  1307.  
  1308.         // Remove any remaining nodes
  1309.         while ( this.firstChild )
  1310.             this.removeChild( this.firstChild );
  1311.     }
  1312. }, function(name, fn){
  1313.     jQuery.fn[ name ] = function(){
  1314.         return this.each( fn, arguments );
  1315.     };
  1316. });
  1317.  
  1318. jQuery.each([ "Height", "Width" ], function(i, name){
  1319.     var type = name.toLowerCase();
  1320.  
  1321.     jQuery.fn[ type ] = function( size ) {
  1322.         // Get window width or height
  1323.         return this[0] == window ?
  1324.             // Opera reports document.body.client[Width/Height] properly in both quirks and standards
  1325.             jQuery.browser.opera && document.body[ "client" + name ] || 
  1326.  
  1327.             // Safari reports inner[Width/Height] just fine (Mozilla and Opera include scroll bar widths)
  1328.             jQuery.browser.safari && window[ "inner" + name ] ||
  1329.  
  1330.             // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
  1331.             document.compatMode == "CSS1Compat" && document.documentElement[ "client" + name ] || document.body[ "client" + name ] :
  1332.  
  1333.             // Get document width or height
  1334.             this[0] == document ?
  1335.                 // Either scroll[Width/Height] or offset[Width/Height], whichever is greater
  1336.                 Math.max( 
  1337.                     Math.max(document.body["scroll" + name], document.documentElement["scroll" + name]), 
  1338.                     Math.max(document.body["offset" + name], document.documentElement["offset" + name]) 
  1339.                 ) :
  1340.  
  1341.                 // Get or set width or height on the element
  1342.                 size == undefined ?
  1343.                     // Get width or height on the element
  1344.                     (this.length ? jQuery.css( this[0], type ) : null) :
  1345.  
  1346.                     // Set the width or height on the element (default to pixels if value is unitless)
  1347.                     this.css( type, size.constructor == String ? size : size + "px" );
  1348.     };
  1349. });
  1350.  
  1351. var chars = jQuery.browser.safari && parseInt(jQuery.browser.version) < 417 ?
  1352.         "(?:[\\w*_-]|\\\\.)" :
  1353.         "(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",
  1354.     quickChild = new RegExp("^>\\s*(" + chars + "+)"),
  1355.     quickID = new RegExp("^(" + chars + "+)(#)(" + chars + "+)"),
  1356.     quickClass = new RegExp("^([#.]?)(" + chars + "*)");
  1357.  
  1358. jQuery.extend({
  1359.     expr: {
  1360.         "": "m[2]=='*'||jQuery.nodeName(a,m[2])",
  1361.         "#": "a.getAttribute('id')==m[2]",
  1362.         ":": {
  1363.             // Position Checks
  1364.             lt: "i<m[3]-0",
  1365.             gt: "i>m[3]-0",
  1366.             nth: "m[3]-0==i",
  1367.             eq: "m[3]-0==i",
  1368.             first: "i==0",
  1369.             last: "i==r.length-1",
  1370.             even: "i%2==0",
  1371.             odd: "i%2",
  1372.  
  1373.             // Child Checks
  1374.             "first-child": "a.parentNode.getElementsByTagName('*')[0]==a",
  1375.             "last-child": "jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a",
  1376.             "only-child": "!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",
  1377.  
  1378.             // Parent Checks
  1379.             parent: "a.firstChild",
  1380.             empty: "!a.firstChild",
  1381.  
  1382.             // Text Check
  1383.             contains: "(a.textContent||a.innerText||jQuery(a).text()||'').indexOf(m[3])>=0",
  1384.  
  1385.             // Visibility
  1386.             visible: '"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',
  1387.             hidden: '"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',
  1388.  
  1389.             // Form attributes
  1390.             enabled: "!a.disabled",
  1391.             disabled: "a.disabled",
  1392.             checked: "a.checked",
  1393.             selected: "a.selected||jQuery.attr(a,'selected')",
  1394.  
  1395.             // Form elements
  1396.             text: "'text'==a.type",
  1397.             radio: "'radio'==a.type",
  1398.             checkbox: "'checkbox'==a.type",
  1399.             file: "'file'==a.type",
  1400.             password: "'password'==a.type",
  1401.             submit: "'submit'==a.type",
  1402.             image: "'image'==a.type",
  1403.             reset: "'reset'==a.type",
  1404.             button: '"button"==a.type||jQuery.nodeName(a,"button")',
  1405.             input: "/input|select|textarea|button/i.test(a.nodeName)",
  1406.  
  1407.             // :has()
  1408.             has: "jQuery.find(m[3],a).length",
  1409.  
  1410.             // :header
  1411.             header: "/h\\d/i.test(a.nodeName)",
  1412.  
  1413.             // :animated
  1414.             animated: "jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length"
  1415.         }
  1416.     },
  1417.  
  1418.     // The regular expressions that power the parsing engine
  1419.     parse: [
  1420.         // Match: [@value='test'], [@foo]
  1421.         /^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,
  1422.  
  1423.         // Match: :contains('foo')
  1424.         /^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,
  1425.  
  1426.         // Match: :even, :last-chlid, #id, .class
  1427.         new RegExp("^([:.#]*)(" + chars + "+)")
  1428.     ],
  1429.  
  1430.     multiFilter: function( expr, elems, not ) {
  1431.         var old, cur = [];
  1432.  
  1433.         while ( expr && expr != old ) {
  1434.             old = expr;
  1435.             var f = jQuery.filter( expr, elems, not );
  1436.             expr = f.t.replace(/^\s*,\s*/, "" );
  1437.             cur = not ? elems = f.r : jQuery.merge( cur, f.r );
  1438.         }
  1439.  
  1440.         return cur;
  1441.     },
  1442.  
  1443.     find: function( t, context ) {
  1444.         // Quickly handle non-string expressions
  1445.         if ( typeof t != "string" )
  1446.             return [ t ];
  1447.  
  1448.         // check to make sure context is a DOM element or a document
  1449.         if ( context && context.nodeType != 1 && context.nodeType != 9)
  1450.             return [ ];
  1451.  
  1452.         // Set the correct context (if none is provided)
  1453.         context = context || document;
  1454.  
  1455.         // Initialize the search
  1456.         var ret = [context], done = [], last, nodeName;
  1457.  
  1458.         // Continue while a selector expression exists, and while
  1459.         // we're no longer looping upon ourselves
  1460.         while ( t && last != t ) {
  1461.             var r = [];
  1462.             last = t;
  1463.  
  1464.             t = jQuery.trim(t);
  1465.  
  1466.             var foundToken = false;
  1467.  
  1468.             // An attempt at speeding up child selectors that
  1469.             // point to a specific element tag
  1470.             var re = quickChild;
  1471.             var m = re.exec(t);
  1472.  
  1473.             if ( m ) {
  1474.                 nodeName = m[1].toUpperCase();
  1475.  
  1476.                 // Perform our own iteration and filter
  1477.                 for ( var i = 0; ret[i]; i++ )
  1478.                     for ( var c = ret[i].firstChild; c; c = c.nextSibling )
  1479.                         if ( c.nodeType == 1 && (nodeName == "*" || c.nodeName.toUpperCase() == nodeName) )
  1480.                             r.push( c );
  1481.  
  1482.                 ret = r;
  1483.                 t = t.replace( re, "" );
  1484.                 if ( t.indexOf(" ") == 0 ) continue;
  1485.                 foundToken = true;
  1486.             } else {
  1487.                 re = /^([>+~])\s*(\w*)/i;
  1488.  
  1489.                 if ( (m = re.exec(t)) != null ) {
  1490.                     r = [];
  1491.  
  1492.                     var merge = {};
  1493.                     nodeName = m[2].toUpperCase();
  1494.                     m = m[1];
  1495.  
  1496.                     for ( var j = 0, rl = ret.length; j < rl; j++ ) {
  1497.                         var n = m == "~" || m == "+" ? ret[j].nextSibling : ret[j].firstChild;
  1498.                         for ( ; n; n = n.nextSibling )
  1499.                             if ( n.nodeType == 1 ) {
  1500.                                 var id = jQuery.data(n);
  1501.  
  1502.                                 if ( m == "~" && merge[id] ) break;
  1503.  
  1504.                                 if (!nodeName || n.nodeName.toUpperCase() == nodeName ) {
  1505.                                     if ( m == "~" ) merge[id] = true;
  1506.                                     r.push( n );
  1507.                                 }
  1508.  
  1509.                                 if ( m == "+" ) break;
  1510.                             }
  1511.                     }
  1512.  
  1513.                     ret = r;
  1514.  
  1515.                     // And remove the token
  1516.                     t = jQuery.trim( t.replace( re, "" ) );
  1517.                     foundToken = true;
  1518.                 }
  1519.             }
  1520.  
  1521.             // See if there's still an expression, and that we haven't already
  1522.             // matched a token
  1523.             if ( t && !foundToken ) {
  1524.                 // Handle multiple expressions
  1525.                 if ( !t.indexOf(",") ) {
  1526.                     // Clean the result set
  1527.                     if ( context == ret[0] ) ret.shift();
  1528.  
  1529.                     // Merge the result sets
  1530.                     done = jQuery.merge( done, ret );
  1531.  
  1532.                     // Reset the context
  1533.                     r = ret = [context];
  1534.  
  1535.                     // Touch up the selector string
  1536.                     t = " " + t.substr(1,t.length);
  1537.  
  1538.                 } else {
  1539.                     // Optimize for the case nodeName#idName
  1540.                     var re2 = quickID;
  1541.                     var m = re2.exec(t);
  1542.  
  1543.                     // Re-organize the results, so that they're consistent
  1544.                     if ( m ) {
  1545.                         m = [ 0, m[2], m[3], m[1] ];
  1546.  
  1547.                     } else {
  1548.                         // Otherwise, do a traditional filter check for
  1549.                         // ID, class, and element selectors
  1550.                         re2 = quickClass;
  1551.                         m = re2.exec(t);
  1552.                     }
  1553.  
  1554.                     m[2] = m[2].replace(/\\/g, "");
  1555.  
  1556.                     var elem = ret[ret.length-1];
  1557.  
  1558.                     // Try to do a global search by ID, where we can
  1559.                     if ( m[1] == "#" && elem && elem.getElementById && !jQuery.isXMLDoc(elem) ) {
  1560.                         // Optimization for HTML document case
  1561.                         var oid = elem.getElementById(m[2]);
  1562.  
  1563.                         // Do a quick check for the existence of the actual ID attribute
  1564.                         // to avoid selecting by the name attribute in IE
  1565.                         // also check to insure id is a string to avoid selecting an element with the name of 'id' inside a form
  1566.                         if ( (jQuery.browser.msie||jQuery.browser.opera) && oid && typeof oid.id == "string" && oid.id != m[2] )
  1567.                             oid = jQuery('[@id="'+m[2]+'"]', elem)[0];
  1568.  
  1569.                         // Do a quick check for node name (where applicable) so
  1570.                         // that div#foo searches will be really fast
  1571.                         ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : [];
  1572.                     } else {
  1573.                         // We need to find all descendant elements
  1574.                         for ( var i = 0; ret[i]; i++ ) {
  1575.                             // Grab the tag name being searched for
  1576.                             var tag = m[1] == "#" && m[3] ? m[3] : m[1] != "" || m[0] == "" ? "*" : m[2];
  1577.  
  1578.                             // Handle IE7 being really dumb about <object>s
  1579.                             if ( tag == "*" && ret[i].nodeName.toLowerCase() == "object" )
  1580.                                 tag = "param";
  1581.  
  1582.                             r = jQuery.merge( r, ret[i].getElementsByTagName( tag ));
  1583.                         }
  1584.  
  1585.                         // It's faster to filter by class and be done with it
  1586.                         if ( m[1] == "." )
  1587.                             r = jQuery.classFilter( r, m[2] );
  1588.  
  1589.                         // Same with ID filtering
  1590.                         if ( m[1] == "#" ) {
  1591.                             var tmp = [];
  1592.  
  1593.                             // Try to find the element with the ID
  1594.                             for ( var i = 0; r[i]; i++ )
  1595.                                 if ( r[i].getAttribute("id") == m[2] ) {
  1596.                                     tmp = [ r[i] ];
  1597.                                     break;
  1598.                                 }
  1599.  
  1600.                             r = tmp;
  1601.                         }
  1602.  
  1603.                         ret = r;
  1604.                     }
  1605.  
  1606.                     t = t.replace( re2, "" );
  1607.                 }
  1608.  
  1609.             }
  1610.  
  1611.             // If a selector string still exists
  1612.             if ( t ) {
  1613.                 // Attempt to filter it
  1614.                 var val = jQuery.filter(t,r);
  1615.                 ret = r = val.r;
  1616.                 t = jQuery.trim(val.t);
  1617.             }
  1618.         }
  1619.  
  1620.         // An error occurred with the selector;
  1621.         // just return an empty set instead
  1622.         if ( t )
  1623.             ret = [];
  1624.  
  1625.         // Remove the root context
  1626.         if ( ret && context == ret[0] )
  1627.             ret.shift();
  1628.  
  1629.         // And combine the results
  1630.         done = jQuery.merge( done, ret );
  1631.  
  1632.         return done;
  1633.     },
  1634.  
  1635.     classFilter: function(r,m,not){
  1636.         m = " " + m + " ";
  1637.         var tmp = [];
  1638.         for ( var i = 0; r[i]; i++ ) {
  1639.             var pass = (" " + r[i].className + " ").indexOf( m ) >= 0;
  1640.             if ( !not && pass || not && !pass )
  1641.                 tmp.push( r[i] );
  1642.         }
  1643.         return tmp;
  1644.     },
  1645.  
  1646.     filter: function(t,r,not) {
  1647.         var last;
  1648.  
  1649.         // Look for common filter expressions
  1650.         while ( t && t != last ) {
  1651.             last = t;
  1652.  
  1653.             var p = jQuery.parse, m;
  1654.  
  1655.             for ( var i = 0; p[i]; i++ ) {
  1656.                 m = p[i].exec( t );
  1657.  
  1658.                 if ( m ) {
  1659.                     // Remove what we just matched
  1660.                     t = t.substring( m[0].length );
  1661.  
  1662.                     m[2] = m[2].replace(/\\/g, "");
  1663.                     break;
  1664.                 }
  1665.             }
  1666.  
  1667.             if ( !m )
  1668.                 break;
  1669.  
  1670.             // :not() is a special case that can be optimized by
  1671.             // keeping it out of the expression list
  1672.             if ( m[1] == ":" && m[2] == "not" )
  1673.                 // optimize if only one selector found (most common case)
  1674.                 r = isSimple.test( m[3] ) ?
  1675.                     jQuery.filter(m[3], r, true).r :
  1676.                     jQuery( r ).not( m[3] );
  1677.  
  1678.             // We can get a big speed boost by filtering by class here
  1679.             else if ( m[1] == "." )
  1680.                 r = jQuery.classFilter(r, m[2], not);
  1681.  
  1682.             else if ( m[1] == "[" ) {
  1683.                 var tmp = [], type = m[3];
  1684.  
  1685.                 for ( var i = 0, rl = r.length; i < rl; i++ ) {
  1686.                     var a = r[i], z = a[ jQuery.props[m[2]] || m[2] ];
  1687.  
  1688.                     if ( z == null || /href|src|selected/.test(m[2]) )
  1689.                         z = jQuery.attr(a,m[2]) || '';
  1690.  
  1691.                     if ( (type == "" && !!z ||
  1692.                          type == "=" && z == m[5] ||
  1693.                          type == "!=" && z != m[5] ||
  1694.                          type == "^=" && z && !z.indexOf(m[5]) ||
  1695.                          type == "$=" && z.substr(z.length - m[5].length) == m[5] ||
  1696.                          (type == "*=" || type == "~=") && z.indexOf(m[5]) >= 0) ^ not )
  1697.                             tmp.push( a );
  1698.                 }
  1699.  
  1700.                 r = tmp;
  1701.  
  1702.             // We can get a speed boost by handling nth-child here
  1703.             } else if ( m[1] == ":" && m[2] == "nth-child" ) {
  1704.                 var merge = {}, tmp = [],
  1705.                     // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6'
  1706.                     test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec(
  1707.                         m[3] == "even" && "2n" || m[3] == "odd" && "2n+1" ||
  1708.                         !/\D/.test(m[3]) && "0n+" + m[3] || m[3]),
  1709.                     // calculate the numbers (first)n+(last) including if they are negative
  1710.                     first = (test[1] + (test[2] || 1)) - 0, last = test[3] - 0;
  1711.  
  1712.                 // loop through all the elements left in the jQuery object
  1713.                 for ( var i = 0, rl = r.length; i < rl; i++ ) {
  1714.                     var node = r[i], parentNode = node.parentNode, id = jQuery.data(parentNode);
  1715.  
  1716.                     if ( !merge[id] ) {
  1717.                         var c = 1;
  1718.  
  1719.                         for ( var n = parentNode.firstChild; n; n = n.nextSibling )
  1720.                             if ( n.nodeType == 1 )
  1721.                                 n.nodeIndex = c++;
  1722.  
  1723.                         merge[id] = true;
  1724.                     }
  1725.  
  1726.                     var add = false;
  1727.  
  1728.                     if ( first == 0 ) {
  1729.                         if ( node.nodeIndex == last )
  1730.                             add = true;
  1731.                     } else if ( (node.nodeIndex - last) % first == 0 && (node.nodeIndex - last) / first >= 0 )
  1732.                         add = true;
  1733.  
  1734.                     if ( add ^ not )
  1735.                         tmp.push( node );
  1736.                 }
  1737.  
  1738.                 r = tmp;
  1739.  
  1740.             // Otherwise, find the expression to execute
  1741.             } else {
  1742.                 var f = jQuery.expr[m[1]];
  1743.                 if ( typeof f != "string" )
  1744.                     f = jQuery.expr[m[1]][m[2]];
  1745.  
  1746.                 // Build a custom macro to enclose it
  1747.                 f = eval("false||function(a,i){return " + f + "}");
  1748.  
  1749.                 // Execute it against the current filter
  1750.                 r = jQuery.grep( r, f, not );
  1751.             }
  1752.         }
  1753.  
  1754.         // Return an array of filtered elements (r)
  1755.         // and the modified expression string (t)
  1756.         return { r: r, t: t };
  1757.     },
  1758.  
  1759.     dir: function( elem, dir ){
  1760.         var matched = [];
  1761.         var cur = elem[dir];
  1762.         while ( cur && cur != document ) {
  1763.             if ( cur.nodeType == 1 )
  1764.                 matched.push( cur );
  1765.             cur = cur[dir];
  1766.         }
  1767.         return matched;
  1768.     },
  1769.  
  1770.     nth: function(cur,result,dir,elem){
  1771.         result = result || 1;
  1772.         var num = 0;
  1773.  
  1774.         for ( ; cur; cur = cur[dir] )
  1775.             if ( cur.nodeType == 1 && ++num == result )
  1776.                 break;
  1777.  
  1778.         return cur;
  1779.     },
  1780.  
  1781.     sibling: function( n, elem ) {
  1782.         var r = [];
  1783.  
  1784.         for ( ; n; n = n.nextSibling ) {
  1785.             if ( n.nodeType == 1 && (!elem || n != elem) )
  1786.                 r.push( n );
  1787.         }
  1788.  
  1789.         return r;
  1790.     }
  1791. });
  1792.  
  1793. /*
  1794.  * A number of helper functions used for managing events.
  1795.  * Many of the ideas behind this code orignated from 
  1796.  * Dean Edwards' addEvent library.
  1797.  */
  1798. jQuery.event = {
  1799.  
  1800.     // Bind an event to an element
  1801.     // Original by Dean Edwards
  1802.     add: function(elem, types, handler, data) {
  1803.         if ( elem.nodeType == 3 || elem.nodeType == 8 )
  1804.             return;
  1805.  
  1806.         // For whatever reason, IE has trouble passing the window object
  1807.         // around, causing it to be cloned in the process
  1808.         if ( jQuery.browser.msie && elem.setInterval != undefined )
  1809.             elem = window;
  1810.  
  1811.         // Make sure that the function being executed has a unique ID
  1812.         if ( !handler.guid )
  1813.             handler.guid = this.guid++;
  1814.  
  1815.         // if data is passed, bind to handler 
  1816.         if( data != undefined ) { 
  1817.             // Create temporary function pointer to original handler 
  1818.             var fn = handler; 
  1819.  
  1820.             // Create unique handler function, wrapped around original handler 
  1821.             handler = function() { 
  1822.                 // Pass arguments and context to original handler 
  1823.                 return fn.apply(this, arguments); 
  1824.             };
  1825.  
  1826.             // Store data in unique handler 
  1827.             handler.data = data;
  1828.  
  1829.             // Set the guid of unique handler to the same of original handler, so it can be removed 
  1830.             handler.guid = fn.guid;
  1831.         }
  1832.  
  1833.         // Init the element's event structure
  1834.         var events = jQuery.data(elem, "events") || jQuery.data(elem, "events", {}),
  1835.             handle = jQuery.data(elem, "handle") || jQuery.data(elem, "handle", function(){
  1836.                 // returned undefined or false
  1837.                 var val;
  1838.  
  1839.                 // Handle the second event of a trigger and when
  1840.                 // an event is called after a page has unloaded
  1841.                 if ( typeof jQuery == "undefined" || jQuery.event.triggered )
  1842.                     return val;
  1843.  
  1844.                 val = jQuery.event.handle.apply(elem, arguments);
  1845.  
  1846.                 return val;
  1847.             });
  1848.  
  1849.             // Handle multiple events seperated by a space
  1850.             // jQuery(...).bind("mouseover mouseout", fn);
  1851.             jQuery.each(types.split(/\s+/), function(index, type) {
  1852.                 // Namespaced event handlers
  1853.                 var parts = type.split(".");
  1854.                 type = parts[0];
  1855.                 handler.type = parts[1];
  1856.  
  1857.                 // Get the current list of functions bound to this event
  1858.                 var handlers = events[type];
  1859.  
  1860.                 // Init the event handler queue
  1861.                 if (!handlers) {
  1862.                     handlers = events[type] = {};
  1863.  
  1864.                     // Check for a special event handler
  1865.                     // Only use addEventListener/attachEvent if the special
  1866.                     // events handler returns false
  1867.                     if ( !jQuery.event.special[type] || jQuery.event.special[type].setup.call(elem) === false ) {
  1868.                         // Bind the global event handler to the element
  1869.                         if (elem.addEventListener)
  1870.                             elem.addEventListener(type, handle, false);
  1871.                         else if (elem.attachEvent)
  1872.                             elem.attachEvent("on" + type, handle);
  1873.                     }
  1874.                 }
  1875.  
  1876.                 // Add the function to the element's handler list
  1877.                 handlers[handler.guid] = handler;
  1878.  
  1879.                 // Keep track of which events have been used, for global triggering
  1880.                 jQuery.event.global[type] = true;
  1881.             });
  1882.     },
  1883.  
  1884.     guid: 1,
  1885.     global: {},
  1886.  
  1887.     // Detach an event or set of events from an element
  1888.     remove: function(elem, types, handler) {
  1889.         // don't do events on text and comment nodes
  1890.         if ( elem.nodeType == 3 || elem.nodeType == 8 )
  1891.             return;
  1892.  
  1893.         var events = jQuery.data(elem, "events"), ret, index;
  1894.  
  1895.         if ( events ) {
  1896.             // Unbind all events for the element
  1897.             if ( types == undefined )
  1898.                 for ( var type in events )
  1899.                     this.remove( elem, type );
  1900.             else {
  1901.                 // types is actually an event object here
  1902.                 if ( types.type ) {
  1903.                     handler = types.handler;
  1904.                     types = types.type;
  1905.                 }
  1906.  
  1907.                 // Handle multiple events seperated by a space
  1908.                 // jQuery(...).unbind("mouseover mouseout", fn);
  1909.                 jQuery.each(types.split(/\s+/), function(index, type){
  1910.                     // Namespaced event handlers
  1911.                     var parts = type.split(".");
  1912.                     type = parts[0];
  1913.  
  1914.                     if ( events[type] ) {
  1915.                         // remove the given handler for the given type
  1916.                         if ( handler )
  1917.                             delete events[type][handler.guid];
  1918.  
  1919.                         // remove all handlers for the given type
  1920.                         else
  1921.                             for ( handler in events[type] )
  1922.                                 // Handle the removal of namespaced events
  1923.                                 if ( !parts[1] || events[type][handler].type == parts[1] )
  1924.                                     delete events[type][handler];
  1925.  
  1926.                         // remove generic event handler if no more handlers exist
  1927.                         for ( ret in events[type] ) break;
  1928.                         if ( !ret ) {
  1929.                             if ( !jQuery.event.special[type] || jQuery.event.special[type].teardown.call(elem) === false ) {
  1930.                                 if (elem.removeEventListener)
  1931.                                     elem.removeEventListener(type, jQuery.data(elem, "handle"), false);
  1932.                                 else if (elem.detachEvent)
  1933.                                     elem.detachEvent("on" + type, jQuery.data(elem, "handle"));
  1934.                             }
  1935.                             ret = null;
  1936.                             delete events[type];
  1937.                         }
  1938.                     }
  1939.                 });
  1940.             }
  1941.  
  1942.             // Remove the expando if it's no longer used
  1943.             for ( ret in events ) break;
  1944.             if ( !ret ) {
  1945.                 jQuery.removeData( elem, "events" );
  1946.                 jQuery.removeData( elem, "handle" );
  1947.             }
  1948.         }
  1949.     },
  1950.  
  1951.     trigger: function(type, data, elem, donative, extra) {
  1952.         // Clone the incoming data, if any
  1953.         data = jQuery.makeArray(data || []);
  1954.  
  1955.         // Handle a global trigger
  1956.         if ( !elem ) {
  1957.             // Only trigger if we've ever bound an event for it
  1958.             if ( this.global[type] )
  1959.                 jQuery("*").add([window, document]).trigger(type, data);
  1960.  
  1961.         // Handle triggering a single element
  1962.         } else {
  1963.             // don't do events on text and comment nodes
  1964.             if ( elem.nodeType == 3 || elem.nodeType == 8 )
  1965.                 return undefined;
  1966.  
  1967.             var val, ret, fn = jQuery.isFunction( elem[ type ] || null ),
  1968.                 // Check to see if we need to provide a fake event, or not
  1969.                 event = !data[0] || !data[0].preventDefault;
  1970.  
  1971.             // Pass along a fake event
  1972.             if ( event )
  1973.                 data.unshift( this.fix({ type: type, target: elem }) );
  1974.  
  1975.             // Enforce the right trigger type
  1976.             data[0].type = type;
  1977.  
  1978.             // Trigger the event
  1979.             if ( jQuery.isFunction( jQuery.data(elem, "handle") ) )
  1980.                 val = jQuery.data(elem, "handle").apply( elem, data );
  1981.  
  1982.             // Handle triggering native .onfoo handlers
  1983.             if ( !fn && elem["on"+type] && elem["on"+type].apply( elem, data ) === false )
  1984.                 val = false;
  1985.  
  1986.             // Extra functions don't get the custom event object
  1987.             if ( event )
  1988.                 data.shift();
  1989.  
  1990.             // Handle triggering of extra function
  1991.             if ( extra && jQuery.isFunction( extra ) ) {
  1992.                 // call the extra function and tack the current return value on the end for possible inspection
  1993.                 var ret = extra.apply( elem, data.concat( val ) );
  1994.                 // if anything is returned, give it precedence and have it overwrite the previous value
  1995.                 if (ret !== undefined)
  1996.                     val = ret;
  1997.             }
  1998.  
  1999.             // Trigger the native events (except for clicks on links)
  2000.             if ( fn && donative !== false && val !== false && !(jQuery.nodeName(elem, 'a') && type == "click") ) {
  2001.                 this.triggered = true;
  2002.                 try {
  2003.                     elem[ type ]();
  2004.                 // prevent IE from throwing an error for some hidden elements
  2005.                 } catch (e) {}
  2006.             }
  2007.  
  2008.             this.triggered = false;
  2009.         }
  2010.  
  2011.         return val;
  2012.     },
  2013.  
  2014.     handle: function(event) {
  2015.         // returned undefined or false
  2016.         var val;
  2017.  
  2018.         // Empty object is for triggered events with no data
  2019.         event = jQuery.event.fix( event || window.event || {} ); 
  2020.  
  2021.         // Namespaced event handlers
  2022.         var parts = event.type.split(".");
  2023.         event.type = parts[0];
  2024.  
  2025.         var handlers = jQuery.data(this, "events") && jQuery.data(this, "events")[event.type], args = Array.prototype.slice.call( arguments, 1 );
  2026.         args.unshift( event );
  2027.  
  2028.         for ( var j in handlers ) {
  2029.             var handler = handlers[j];
  2030.             // Pass in a reference to the handler function itself
  2031.             // So that we can later remove it
  2032.             args[0].handler = handler;
  2033.             args[0].data = handler.data;
  2034.  
  2035.             // Filter the functions by class
  2036.             if ( !parts[1] || handler.type == parts[1] ) {
  2037.                 var ret = handler.apply( this, args );
  2038.  
  2039.                 if ( val !== false )
  2040.                     val = ret;
  2041.  
  2042.                 if ( ret === false ) {
  2043.                     event.preventDefault();
  2044.                     event.stopPropagation();
  2045.                 }
  2046.             }
  2047.         }
  2048.  
  2049.         // Clean up added properties in IE to prevent memory leak
  2050.         if (jQuery.browser.msie)
  2051.             event.target = event.preventDefault = event.stopPropagation =
  2052.                 event.handler = event.data = null;
  2053.  
  2054.         return val;
  2055.     },
  2056.  
  2057.     fix: function(event) {
  2058.         // Short-circuit if the event has already been fixed by jQuery.event.fix
  2059.         if ( event[ expando ] )
  2060.             return event;
  2061.  
  2062.         // store a copy of the original event object 
  2063.         // and clone to set read-only properties
  2064.         var originalEvent = event;
  2065.         event = jQuery.extend({}, originalEvent);
  2066.  
  2067.         // Mark the event as fixed by jQuery.event.fix
  2068.         event[ expando ] = true;
  2069.  
  2070.         // add preventDefault and stopPropagation since 
  2071.         // they will not work on the clone
  2072.         event.preventDefault = function() {
  2073.             // if preventDefault exists run it on the original event
  2074.             if (originalEvent.preventDefault)
  2075.                 originalEvent.preventDefault();
  2076.             // otherwise set the returnValue property of the original event to false (IE)
  2077.             originalEvent.returnValue = false;
  2078.         };
  2079.         event.stopPropagation = function() {
  2080.             // if stopPropagation exists run it on the original event
  2081.             if (originalEvent.stopPropagation)
  2082.                 originalEvent.stopPropagation();
  2083.             // otherwise set the cancelBubble property of the original event to true (IE)
  2084.             originalEvent.cancelBubble = true;
  2085.         };
  2086.  
  2087.         // Fix target property, if necessary
  2088.         if ( !event.target )
  2089.             event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either
  2090.  
  2091.         // check if target is a textnode (safari)
  2092.         if ( event.target.nodeType == 3 )
  2093.             event.target = originalEvent.target.parentNode;
  2094.  
  2095.         // Add relatedTarget, if necessary
  2096.         if ( !event.relatedTarget && event.fromElement )
  2097.             event.relatedTarget = event.fromElement == event.target ? event.toElement : event.fromElement;
  2098.  
  2099.         // Calculate pageX/Y if missing and clientX/Y available
  2100.         if ( event.pageX == null && event.clientX != null ) {
  2101.             var doc = document.documentElement, body = document.body;
  2102.             event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc.clientLeft || 0);
  2103.             event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc.clientTop || 0);
  2104.         }
  2105.  
  2106.         // Add which for key events
  2107.         if ( !event.which && (event.charCode || event.keyCode) )
  2108.             event.which = event.charCode || event.keyCode;
  2109.  
  2110.         // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs)
  2111.         if ( !event.metaKey && event.ctrlKey )
  2112.             event.metaKey = event.ctrlKey;
  2113.  
  2114.         // Add which for click: 1 == left; 2 == middle; 3 == right
  2115.         // Note: button is not normalized, so don't use it
  2116.         if ( !event.which && event.button )
  2117.             event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));
  2118.  
  2119.         return event;
  2120.     },
  2121.  
  2122.     special: {
  2123.         ready: {
  2124.             setup: function() {
  2125.                 // Make sure the ready event is setup
  2126.                 bindReady();
  2127.                 return;
  2128.             },
  2129.  
  2130.             teardown: function() { return; }
  2131.         },
  2132.  
  2133.         mouseenter: {
  2134.             setup: function() {
  2135.                 if ( jQuery.browser.msie ) return false;
  2136.                 jQuery(this).bind("mouseover", jQuery.event.special.mouseenter.handler);
  2137.                 return true;
  2138.             },
  2139.  
  2140.             teardown: function() {
  2141.                 if ( jQuery.browser.msie ) return false;
  2142.                 jQuery(this).unbind("mouseover", jQuery.event.special.mouseenter.handler);
  2143.                 return true;
  2144.             },
  2145.  
  2146.             handler: function(event) {
  2147.                 // If we actually just moused on to a sub-element, ignore it
  2148.                 if ( withinElement(event, this) ) return true;
  2149.                 // Execute the right handlers by setting the event type to mouseenter
  2150.                 arguments[0].type = "mouseenter";
  2151.                 return jQuery.event.handle.apply(this, arguments);
  2152.             }
  2153.         },
  2154.  
  2155.         mouseleave: {
  2156.             setup: function() {
  2157.                 if ( jQuery.browser.msie ) return false;
  2158.                 jQuery(this).bind("mouseout", jQuery.event.special.mouseleave.handler);
  2159.                 return true;
  2160.             },
  2161.  
  2162.             teardown: function() {
  2163.                 if ( jQuery.browser.msie ) return false;
  2164.                 jQuery(this).unbind("mouseout", jQuery.event.special.mouseleave.handler);
  2165.                 return true;
  2166.             },
  2167.  
  2168.             handler: function(event) {
  2169.                 // If we actually just moused on to a sub-element, ignore it
  2170.                 if ( withinElement(event, this) ) return true;
  2171.                 // Execute the right handlers by setting the event type to mouseleave
  2172.                 arguments[0].type = "mouseleave";
  2173.                 return jQuery.event.handle.apply(this, arguments);
  2174.             }
  2175.         }
  2176.     }
  2177. };
  2178.  
  2179. jQuery.fn.extend({
  2180.     bind: function( type, data, fn ) {
  2181.         return type == "unload" ? this.one(type, data, fn) : this.each(function(){
  2182.             jQuery.event.add( this, type, fn || data, fn && data );
  2183.         });
  2184.     },
  2185.  
  2186.     one: function( type, data, fn ) {
  2187.         return this.each(function(){
  2188.             jQuery.event.add( this, type, function(event) {
  2189.                 jQuery(this).unbind(event);
  2190.                 return (fn || data).apply( this, arguments);
  2191.             }, fn && data);
  2192.         });
  2193.     },
  2194.  
  2195.     unbind: function( type, fn ) {
  2196.         return this.each(function(){
  2197.             jQuery.event.remove( this, type, fn );
  2198.         });
  2199.     },
  2200.  
  2201.     trigger: function( type, data, fn ) {
  2202.         return this.each(function(){
  2203.             jQuery.event.trigger( type, data, this, true, fn );
  2204.         });
  2205.     },
  2206.  
  2207.     triggerHandler: function( type, data, fn ) {
  2208.         if ( this[0] )
  2209.             return jQuery.event.trigger( type, data, this[0], false, fn );
  2210.         return undefined;
  2211.     },
  2212.  
  2213.     toggle: function() {
  2214.         // Save reference to arguments for access in closure
  2215.         var args = arguments;
  2216.  
  2217.         return this.click(function(event) {
  2218.             // Figure out which function to execute
  2219.             this.lastToggle = 0 == this.lastToggle ? 1 : 0;
  2220.  
  2221.             // Make sure that clicks stop
  2222.             event.preventDefault();
  2223.  
  2224.             // and execute the function
  2225.             return args[this.lastToggle].apply( this, arguments ) || false;
  2226.         });
  2227.     },
  2228.  
  2229.     hover: function(fnOver, fnOut) {
  2230.         return this.bind('mouseenter', fnOver).bind('mouseleave', fnOut);
  2231.     },
  2232.  
  2233.     ready: function(fn) {
  2234.         // Attach the listeners
  2235.         bindReady();
  2236.  
  2237.         // If the DOM is already ready
  2238.         if ( jQuery.isReady )
  2239.             // Execute the function immediately
  2240.             fn.call( document, jQuery );
  2241.  
  2242.         // Otherwise, remember the function for later
  2243.         else
  2244.             // Add the function to the wait list
  2245.             jQuery.readyList.push( function() { return fn.call(this, jQuery); } );
  2246.  
  2247.         return this;
  2248.     }
  2249. });
  2250.  
  2251. jQuery.extend({
  2252.     isReady: false,
  2253.     readyList: [],
  2254.     // Handle when the DOM is ready
  2255.     ready: function() {
  2256.         // Make sure that the DOM is not already loaded
  2257.         if ( !jQuery.isReady ) {
  2258.             // Remember that the DOM is ready
  2259.             jQuery.isReady = true;
  2260.  
  2261.             // If there are functions bound, to execute
  2262.             if ( jQuery.readyList ) {
  2263.                 // Execute all of them
  2264.                 jQuery.each( jQuery.readyList, function(){
  2265.                     this.apply( document );
  2266.                 });
  2267.  
  2268.                 // Reset the list of functions
  2269.                 jQuery.readyList = null;
  2270.             }
  2271.  
  2272.             // Trigger any bound ready events
  2273.             $(document).triggerHandler("ready");
  2274.         }
  2275.     }
  2276. });
  2277.  
  2278. var readyBound = false;
  2279.  
  2280. function bindReady(){
  2281.     if ( readyBound ) return;
  2282.     readyBound = true;
  2283.  
  2284.     // Mozilla, Opera (see further below for it) and webkit nightlies currently support this event
  2285.     if ( document.addEventListener && !jQuery.browser.opera)
  2286.         // Use the handy event callback
  2287.         document.addEventListener( "DOMContentLoaded", jQuery.ready, false );
  2288.  
  2289.     // If IE is used and is not in a frame
  2290.     // Continually check to see if the document is ready
  2291.     if ( jQuery.browser.msie && window == top ) (function(){
  2292.         if (jQuery.isReady) return;
  2293.         try {
  2294.             // If IE is used, use the trick by Diego Perini
  2295.             // http://javascript.nwbox.com/IEContentLoaded/
  2296.             document.documentElement.doScroll("left");
  2297.         } catch( error ) {
  2298.             setTimeout( arguments.callee, 0 );
  2299.             return;
  2300.         }
  2301.         // and execute any waiting functions
  2302.         jQuery.ready();
  2303.     })();
  2304.  
  2305.     if ( jQuery.browser.opera )
  2306.         document.addEventListener( "DOMContentLoaded", function () {
  2307.             if (jQuery.isReady) return;
  2308.             for (var i = 0; i < document.styleSheets.length; i++)
  2309.                 if (document.styleSheets[i].disabled) {
  2310.                     setTimeout( arguments.callee, 0 );
  2311.                     return;
  2312.                 }
  2313.             // and execute any waiting functions
  2314.             jQuery.ready();
  2315.         }, false);
  2316.  
  2317.     if ( jQuery.browser.safari ) {
  2318.         var numStyles;
  2319.         (function(){
  2320.             if (jQuery.isReady) return;
  2321.             if ( document.readyState != "loaded" && document.readyState != "complete" ) {
  2322.                 setTimeout( arguments.callee, 0 );
  2323.                 return;
  2324.             }
  2325.             if ( numStyles === undefined )
  2326.                 numStyles = jQuery("style, link[rel=stylesheet]").length;
  2327.             if ( document.styleSheets.length != numStyles ) {
  2328.                 setTimeout( arguments.callee, 0 );
  2329.                 return;
  2330.             }
  2331.             // and execute any waiting functions
  2332.             jQuery.ready();
  2333.         })();
  2334.     }
  2335.  
  2336.     // A fallback to window.onload, that will always work
  2337.     jQuery.event.add( window, "load", jQuery.ready );
  2338. }
  2339.  
  2340. jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
  2341.     "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + 
  2342.     "submit,keydown,keypress,keyup,error").split(","), function(i, name){
  2343.  
  2344.     // Handle event binding
  2345.     jQuery.fn[name] = function(fn){
  2346.         return fn ? this.bind(name, fn) : this.trigger(name);
  2347.     };
  2348. });
  2349.  
  2350. // Checks if an event happened on an element within another element
  2351. // Used in jQuery.event.special.mouseenter and mouseleave handlers
  2352. var withinElement = function(event, elem) {
  2353.     // Check if mouse(over|out) are still within the same parent element
  2354.     var parent = event.relatedTarget;
  2355.     // Traverse up the tree
  2356.     while ( parent && parent != elem ) try { parent = parent.parentNode } catch(error) { parent = elem; };
  2357.     // Return true if we actually just moused on to a sub-element
  2358.     return parent == elem;
  2359. };
  2360.  
  2361. // Prevent memory leaks in IE
  2362. // And prevent errors on refresh with events like mouseover in other browsers
  2363. // Window isn't included so as not to unbind existing unload events
  2364. jQuery(window).bind("unload", function() {
  2365.     jQuery("*").add(document).unbind();
  2366. });
  2367. jQuery.fn.extend({
  2368.     load: function( url, params, callback ) {
  2369.         if ( jQuery.isFunction( url ) )
  2370.             return this.bind("load", url);
  2371.  
  2372.         var off = url.indexOf(" ");
  2373.         if ( off >= 0 ) {
  2374.             var selector = url.slice(off, url.length);
  2375.             url = url.slice(0, off);
  2376.         }
  2377.  
  2378.         callback = callback || function(){};
  2379.  
  2380.         // Default to a GET request
  2381.         var type = "GET";
  2382.  
  2383.         // If the second parameter was provided
  2384.         if ( params )
  2385.             // If it's a function
  2386.             if ( jQuery.isFunction( params ) ) {
  2387.                 // We assume that it's the callback
  2388.                 callback = params;
  2389.                 params = null;
  2390.  
  2391.             // Otherwise, build a param string
  2392.             } else {
  2393.                 params = jQuery.param( params );
  2394.                 type = "POST";
  2395.             }
  2396.  
  2397.         var self = this;
  2398.  
  2399.         // Request the remote document
  2400.         jQuery.ajax({
  2401.             url: url,
  2402.             type: type,
  2403.             dataType: "html",
  2404.             data: params,
  2405.             complete: function(res, status){
  2406.                 // If successful, inject the HTML into all the matched elements
  2407.                 if ( status == "success" || status == "notmodified" )
  2408.                     // See if a selector was specified
  2409.                     self.html( selector ?
  2410.                         // Create a dummy div to hold the results
  2411.                         jQuery("<div/>")
  2412.                             // inject the contents of the document in, removing the scripts
  2413.                             // to avoid any 'Permission Denied' errors in IE
  2414.                             .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
  2415.  
  2416.                             // Locate the specified elements
  2417.                             .find(selector) :
  2418.  
  2419.                         // If not, just inject the full result
  2420.                         res.responseText );
  2421.  
  2422.                 self.each( callback, [res.responseText, status, res] );
  2423.             }
  2424.         });
  2425.         return this;
  2426.     },
  2427.  
  2428.     serialize: function() {
  2429.         return jQuery.param(this.serializeArray());
  2430.     },
  2431.     serializeArray: function() {
  2432.         return this.map(function(){
  2433.             return jQuery.nodeName(this, "form") ?
  2434.                 jQuery.makeArray(this.elements) : this;
  2435.         })
  2436.         .filter(function(){
  2437.             return this.name && !this.disabled && 
  2438.                 (this.checked || /select|textarea/i.test(this.nodeName) || 
  2439.                     /text|hidden|password/i.test(this.type));
  2440.         })
  2441.         .map(function(i, elem){
  2442.             var val = jQuery(this).val();
  2443.             return val == null ? null :
  2444.                 val.constructor == Array ?
  2445.                     jQuery.map( val, function(val, i){
  2446.                         return {name: elem.name, value: val};
  2447.                     }) :
  2448.                     {name: elem.name, value: val};
  2449.         }).get();
  2450.     }
  2451. });
  2452.  
  2453. // Attach a bunch of functions for handling common AJAX events
  2454. jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
  2455.     jQuery.fn[o] = function(f){
  2456.         return this.bind(o, f);
  2457.     };
  2458. });
  2459.  
  2460. var jsc = (new Date).getTime();
  2461.  
  2462. jQuery.extend({
  2463.     get: function( url, data, callback, type ) {
  2464.         // shift arguments if data argument was ommited
  2465.         if ( jQuery.isFunction( data ) ) {
  2466.             callback = data;
  2467.             data = null;
  2468.         }
  2469.  
  2470.         return jQuery.ajax({
  2471.             type: "GET",
  2472.             url: url,
  2473.             data: data,
  2474.             success: callback,
  2475.             dataType: type
  2476.         });
  2477.     },
  2478.  
  2479.     getScript: function( url, callback ) {
  2480.         return jQuery.get(url, null, callback, "script");
  2481.     },
  2482.  
  2483.     getJSON: function( url, data, callback ) {
  2484.         return jQuery.get(url, data, callback, "json");
  2485.     },
  2486.  
  2487.     post: function( url, data, callback, type ) {
  2488.         if ( jQuery.isFunction( data ) ) {
  2489.             callback = data;
  2490.             data = {};
  2491.         }
  2492.  
  2493.         return jQuery.ajax({
  2494.             type: "POST",
  2495.             url: url,
  2496.             data: data,
  2497.             success: callback,
  2498.             dataType: type
  2499.         });
  2500.     },
  2501.  
  2502.     ajaxSetup: function( settings ) {
  2503.         jQuery.extend( jQuery.ajaxSettings, settings );
  2504.     },
  2505.  
  2506.     ajaxSettings: {
  2507.         global: true,
  2508.         type: "GET",
  2509.         timeout: 0,
  2510.         contentType: "application/x-www-form-urlencoded",
  2511.         processData: true,
  2512.         async: true,
  2513.         data: null
  2514.     },
  2515.  
  2516.     // Last-Modified header cache for next request
  2517.     lastModified: {},
  2518.  
  2519.     ajax: function( s ) {
  2520.         var jsonp, jsre = /=\?(&|$)/g, status, data;
  2521.  
  2522.         // Extend the settings, but re-extend 's' so that it can be
  2523.         // checked again later (in the test suite, specifically)
  2524.         s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
  2525.  
  2526.         // convert data if not already a string
  2527.         if ( s.data && s.processData && typeof s.data != "string" )
  2528.             s.data = jQuery.param(s.data);
  2529.  
  2530.         // Handle JSONP Parameter Callbacks
  2531.         if ( s.dataType == "jsonp" ) {
  2532.             if ( s.type.toLowerCase() == "get" ) {
  2533.                 if ( !s.url.match(jsre) )
  2534.                     s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
  2535.             } else if ( !s.data || !s.data.match(jsre) )
  2536.                 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
  2537.             s.dataType = "json";
  2538.         }
  2539.  
  2540.         // Build temporary JSONP function
  2541.         if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
  2542.             jsonp = "jsonp" + jsc++;
  2543.  
  2544.             // Replace the =? sequence both in the query string and the data
  2545.             if ( s.data )
  2546.                 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
  2547.             s.url = s.url.replace(jsre, "=" + jsonp + "$1");
  2548.  
  2549.             // We need to make sure
  2550.             // that a JSONP style response is executed properly
  2551.             s.dataType = "script";
  2552.  
  2553.             // Handle JSONP-style loading
  2554.             window[ jsonp ] = function(tmp){
  2555.                 data = tmp;
  2556.                 success();
  2557.                 complete();
  2558.                 // Garbage collect
  2559.                 window[ jsonp ] = undefined;
  2560.                 try{ delete window[ jsonp ]; } catch(e){}
  2561.                 if ( head )
  2562.                     head.removeChild( script );
  2563.             };
  2564.         }
  2565.  
  2566.         if ( s.dataType == "script" && s.cache == null )
  2567.             s.cache = false;
  2568.  
  2569.         if ( s.cache === false && s.type.toLowerCase() == "get" ) {
  2570.             var ts = (new Date()).getTime();
  2571.             // try replacing _= if it is there
  2572.             var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
  2573.             // if nothing was replaced, add timestamp to the end
  2574.             s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
  2575.         }
  2576.  
  2577.         // If data is available, append data to url for get requests
  2578.         if ( s.data && s.type.toLowerCase() == "get" ) {
  2579.             s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
  2580.  
  2581.             // IE likes to send both get and post data, prevent this
  2582.             s.data = null;
  2583.         }
  2584.  
  2585.         // Watch for a new set of requests
  2586.         if ( s.global && ! jQuery.active++ )
  2587.             jQuery.event.trigger( "ajaxStart" );
  2588.  
  2589.         // If we're requesting a remote document
  2590.         // and trying to load JSON or Script with a GET
  2591.         if ( (!s.url.indexOf("http") || !s.url.indexOf("//")) && ( s.dataType == "script" || s.dataType =="json" ) && s.type.toLowerCase() == "get" ) {
  2592.             var head = document.getElementsByTagName("head")[0];
  2593.             var script = document.createElement("script");
  2594.             script.src = s.url;
  2595.             if (s.scriptCharset)
  2596.                 script.charset = s.scriptCharset;
  2597.  
  2598.             // Handle Script loading
  2599.             if ( !jsonp ) {
  2600.                 var done = false;
  2601.  
  2602.                 // Attach handlers for all browsers
  2603.                 script.onload = script.onreadystatechange = function(){
  2604.                     if ( !done && (!this.readyState || 
  2605.                             this.readyState == "loaded" || this.readyState == "complete") ) {
  2606.                         done = true;
  2607.                         success();
  2608.                         complete();
  2609.                         head.removeChild( script );
  2610.                     }
  2611.                 };
  2612.             }
  2613.  
  2614.             head.appendChild(script);
  2615.  
  2616.             // We handle everything using the script element injection
  2617.             return undefined;
  2618.         }
  2619.  
  2620.         var requestDone = false;
  2621.  
  2622.         // Create the request object; Microsoft failed to properly
  2623.         // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
  2624.         var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
  2625.  
  2626.         // Open the socket
  2627.         xml.open(s.type, s.url, s.async);
  2628.  
  2629.         // Need an extra try/catch for cross domain requests in Firefox 3
  2630.         try {
  2631.             // Set the correct header, if data is being sent
  2632.             if ( s.data )
  2633.                 xml.setRequestHeader("Content-Type", s.contentType);
  2634.  
  2635.             // Set the If-Modified-Since header, if ifModified mode.
  2636.             if ( s.ifModified )
  2637.                 xml.setRequestHeader("If-Modified-Since",
  2638.                     jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
  2639.  
  2640.             // Set header so the called script knows that it's an XMLHttpRequest
  2641.             xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
  2642.         } catch(e){}
  2643.  
  2644.         // Allow custom headers/mimetypes
  2645.         if ( s.beforeSend )
  2646.             s.beforeSend(xml);
  2647.  
  2648.         if ( s.global )
  2649.             jQuery.event.trigger("ajaxSend", [xml, s]);
  2650.  
  2651.         // Wait for a response to come back
  2652.         var onreadystatechange = function(isTimeout){
  2653.             // The transfer is complete and the data is available, or the request timed out
  2654.             if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
  2655.                 requestDone = true;
  2656.  
  2657.                 // clear poll interval
  2658.                 if (ival) {
  2659.                     clearInterval(ival);
  2660.                     ival = null;
  2661.                 }
  2662.  
  2663.                 status = isTimeout == "timeout" && "timeout" ||
  2664.                     !jQuery.httpSuccess( xml ) && "error" ||
  2665.                     s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
  2666.                     "success";
  2667.  
  2668.                 if ( status == "success" ) {
  2669.                     // Watch for, and catch, XML document parse errors
  2670.                     try {
  2671.                         // process the data (runs the xml through httpData regardless of callback)
  2672.                         data = jQuery.httpData( xml, s.dataType );
  2673.                     } catch(e) {
  2674.                         status = "parsererror";
  2675.                     }
  2676.                 }
  2677.  
  2678.                 // Make sure that the request was successful or notmodified
  2679.                 if ( status == "success" ) {
  2680.                     // Cache Last-Modified header, if ifModified mode.
  2681.                     var modRes;
  2682.                     try {
  2683.                         modRes = xml.getResponseHeader("Last-Modified");
  2684.                     } catch(e) {} // swallow exception thrown by FF if header is not available
  2685.  
  2686.                     if ( s.ifModified && modRes )
  2687.                         jQuery.lastModified[s.url] = modRes;
  2688.  
  2689.                     // JSONP handles its own success callback
  2690.                     if ( !jsonp )
  2691.                         success();    
  2692.                 } else
  2693.                     jQuery.handleError(s, xml, status);
  2694.  
  2695.                 // Fire the complete handlers
  2696.                 complete();
  2697.  
  2698.                 // Stop memory leaks
  2699.                 if ( s.async )
  2700.                     xml = null;
  2701.             }
  2702.         };
  2703.  
  2704.         if ( s.async ) {
  2705.             // don't attach the handler to the request, just poll it instead
  2706.             var ival = setInterval(onreadystatechange, 13); 
  2707.  
  2708.             // Timeout checker
  2709.             if ( s.timeout > 0 )
  2710.                 setTimeout(function(){
  2711.                     // Check to see if the request is still happening
  2712.                     if ( xml ) {
  2713.                         // Cancel the request
  2714.                         xml.abort();
  2715.  
  2716.                         if( !requestDone )
  2717.                             onreadystatechange( "timeout" );
  2718.                     }
  2719.                 }, s.timeout);
  2720.         }
  2721.  
  2722.         // Send the data
  2723.         try {
  2724.             xml.send(s.data);
  2725.         } catch(e) {
  2726.             jQuery.handleError(s, xml, null, e);
  2727.         }
  2728.  
  2729.         // firefox 1.5 doesn't fire statechange for sync requests
  2730.         if ( !s.async )
  2731.             onreadystatechange();
  2732.  
  2733.         function success(){
  2734.             // If a local callback was specified, fire it and pass it the data
  2735.             if ( s.success )
  2736.                 s.success( data, status );
  2737.  
  2738.             // Fire the global callback
  2739.             if ( s.global )
  2740.                 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
  2741.         }
  2742.  
  2743.         function complete(){
  2744.             // Process result
  2745.             if ( s.complete )
  2746.                 s.complete(xml, status);
  2747.  
  2748.             // The request was completed
  2749.             if ( s.global )
  2750.                 jQuery.event.trigger( "ajaxComplete", [xml, s] );
  2751.  
  2752.             // Handle the global AJAX counter
  2753.             if ( s.global && ! --jQuery.active )
  2754.                 jQuery.event.trigger( "ajaxStop" );
  2755.         }
  2756.  
  2757.         // return XMLHttpRequest to allow aborting the request etc.
  2758.         return xml;
  2759.     },
  2760.  
  2761.     handleError: function( s, xml, status, e ) {
  2762.         // If a local callback was specified, fire it
  2763.         if ( s.error ) s.error( xml, status, e );
  2764.  
  2765.         // Fire the global callback
  2766.         if ( s.global )
  2767.             jQuery.event.trigger( "ajaxError", [xml, s, e] );
  2768.     },
  2769.  
  2770.     // Counter for holding the number of active queries
  2771.     active: 0,
  2772.  
  2773.     // Determines if an XMLHttpRequest was successful or not
  2774.     httpSuccess: function( r ) {
  2775.         try {
  2776.             // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
  2777.             return !r.status && location.protocol == "file:" ||
  2778.                 ( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
  2779.                 jQuery.browser.safari && r.status == undefined;
  2780.         } catch(e){}
  2781.         return false;
  2782.     },
  2783.  
  2784.     // Determines if an XMLHttpRequest returns NotModified
  2785.     httpNotModified: function( xml, url ) {
  2786.         try {
  2787.             var xmlRes = xml.getResponseHeader("Last-Modified");
  2788.  
  2789.             // Firefox always returns 200. check Last-Modified date
  2790.             return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
  2791.                 jQuery.browser.safari && xml.status == undefined;
  2792.         } catch(e){}
  2793.         return false;
  2794.     },
  2795.  
  2796.     httpData: function( r, type ) {
  2797.         var ct = r.getResponseHeader("content-type");
  2798.         var xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0;
  2799.         var data = xml ? r.responseXML : r.responseText;
  2800.  
  2801.         if ( xml && data.documentElement.tagName == "parsererror" )
  2802.             throw "parsererror";
  2803.  
  2804.         // If the type is "script", eval it in global context
  2805.         if ( type == "script" )
  2806.             jQuery.globalEval( data );
  2807.  
  2808.         // Get the JavaScript object, if JSON is used.
  2809.         if ( type == "json" )
  2810.             data = eval("(" + data + ")");
  2811.  
  2812.         return data;
  2813.     },
  2814.  
  2815.     // Serialize an array of form elements or a set of
  2816.     // key/values into a query string
  2817.     param: function( a ) {
  2818.         var s = [];
  2819.  
  2820.         // If an array was passed in, assume that it is an array
  2821.         // of form elements
  2822.         if ( a.constructor == Array || a.jquery )
  2823.             // Serialize the form elements
  2824.             jQuery.each( a, function(){
  2825.                 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
  2826.             });
  2827.  
  2828.         // Otherwise, assume that it's an object of key/value pairs
  2829.         else
  2830.             // Serialize the key/values
  2831.             for ( var j in a )
  2832.                 // If the value is an array then the key names need to be repeated
  2833.                 if ( a[j] && a[j].constructor == Array )
  2834.                     jQuery.each( a[j], function(){
  2835.                         s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
  2836.                     });
  2837.                 else
  2838.                     s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) );
  2839.  
  2840.         // Return the resulting serialization
  2841.         return s.join("&").replace(/%20/g, "+");
  2842.     }
  2843.  
  2844. });
  2845. jQuery.fn.extend({
  2846.     show: function(speed,callback){
  2847.         return speed ?
  2848.             this.animate({
  2849.                 height: "show", width: "show", opacity: "show"
  2850.             }, speed, callback) :
  2851.  
  2852.             this.filter(":hidden").each(function(){
  2853.                 this.style.display = this.oldblock || "";
  2854.                 if ( jQuery.css(this,"display") == "none" ) {
  2855.                     var elem = jQuery("<" + this.tagName + " />").appendTo("body");
  2856.                     this.style.display = elem.css("display");
  2857.                     elem.remove();
  2858.                 }
  2859.             }).end();
  2860.     },
  2861.  
  2862.     hide: function(speed,callback){
  2863.         return speed ?
  2864.             this.animate({
  2865.                 height: "hide", width: "hide", opacity: "hide"
  2866.             }, speed, callback) :
  2867.  
  2868.             this.filter(":visible").each(function(){
  2869.                 this.oldblock = this.oldblock || jQuery.css(this,"display");
  2870.                 this.style.display = "none";
  2871.             }).end();
  2872.     },
  2873.  
  2874.     // Save the old toggle function
  2875.     _toggle: jQuery.fn.toggle,
  2876.  
  2877.     toggle: function( fn, fn2 ){
  2878.         return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ?
  2879.             this._toggle( fn, fn2 ) :
  2880.             fn ?
  2881.                 this.animate({
  2882.                     height: "toggle", width: "toggle", opacity: "toggle"
  2883.                 }, fn, fn2) :
  2884.                 this.each(function(){
  2885.                     jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]();
  2886.                 });
  2887.     },
  2888.  
  2889.     slideDown: function(speed,callback){
  2890.         return this.animate({height: "show"}, speed, callback);
  2891.     },
  2892.  
  2893.     slideUp: function(speed,callback){
  2894.         return this.animate({height: "hide"}, speed, callback);
  2895.     },
  2896.  
  2897.     slideToggle: function(speed, callback){
  2898.         return this.animate({height: "toggle"}, speed, callback);
  2899.     },
  2900.  
  2901.     fadeIn: function(speed, callback){
  2902.         return this.animate({opacity: "show"}, speed, callback);
  2903.     },
  2904.  
  2905.     fadeOut: function(speed, callback){
  2906.         return this.animate({opacity: "hide"}, speed, callback);
  2907.     },
  2908.  
  2909.     fadeTo: function(speed,to,callback){
  2910.         return this.animate({opacity: to}, speed, callback);
  2911.     },
  2912.  
  2913.     animate: function( prop, speed, easing, callback ) {
  2914.         var optall = jQuery.speed(speed, easing, callback);
  2915.  
  2916.         return this[ optall.queue === false ? "each" : "queue" ](function(){
  2917.             if ( this.nodeType != 1)
  2918.                 return false;
  2919.  
  2920.             var opt = jQuery.extend({}, optall);
  2921.             var hidden = jQuery(this).is(":hidden"), self = this;
  2922.  
  2923.             for ( var p in prop ) {
  2924.                 if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden )
  2925.                     return jQuery.isFunction(opt.complete) && opt.complete.apply(this);
  2926.  
  2927.                 if ( p == "height" || p == "width" ) {
  2928.                     // Store display property
  2929.                     opt.display = jQuery.css(this, "display");
  2930.  
  2931.                     // Make sure that nothing sneaks out
  2932.                     opt.overflow = this.style.overflow;
  2933.                 }
  2934.             }
  2935.  
  2936.             if ( opt.overflow != null )
  2937.                 this.style.overflow = "hidden";
  2938.  
  2939.             opt.curAnim = jQuery.extend({}, prop);
  2940.  
  2941.             jQuery.each( prop, function(name, val){
  2942.                 var e = new jQuery.fx( self, opt, name );
  2943.  
  2944.                 if ( /toggle|show|hide/.test(val) )
  2945.                     e[ val == "toggle" ? hidden ? "show" : "hide" : val ]( prop );
  2946.                 else {
  2947.                     var parts = val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),
  2948.                         start = e.cur(true) || 0;
  2949.  
  2950.                     if ( parts ) {
  2951.                         var end = parseFloat(parts[2]),
  2952.                             unit = parts[3] || "px";
  2953.  
  2954.                         // We need to compute starting value
  2955.                         if ( unit != "px" ) {
  2956.                             self.style[ name ] = (end || 1) + unit;
  2957.                             start = ((end || 1) / e.cur(true)) * start;
  2958.                             self.style[ name ] = start + unit;
  2959.                         }
  2960.  
  2961.                         // If a +=/-= token was provided, we're doing a relative animation
  2962.                         if ( parts[1] )
  2963.                             end = ((parts[1] == "-=" ? -1 : 1) * end) + start;
  2964.  
  2965.                         e.custom( start, end, unit );
  2966.                     } else
  2967.                         e.custom( start, val, "" );
  2968.                 }
  2969.             });
  2970.  
  2971.             // For JS strict compliance
  2972.             return true;
  2973.         });
  2974.     },
  2975.  
  2976.     queue: function(type, fn){
  2977.         if ( jQuery.isFunction(type) || ( type && type.constructor == Array )) {
  2978.             fn = type;
  2979.             type = "fx";
  2980.         }
  2981.  
  2982.         if ( !type || (typeof type == "string" && !fn) )
  2983.             return queue( this[0], type );
  2984.  
  2985.         return this.each(function(){
  2986.             if ( this.nodeType != 1)
  2987.                 return;
  2988.  
  2989.             if ( fn.constructor == Array )
  2990.                 queue(this, type, fn);
  2991.             else {
  2992.                 queue(this, type).push( fn );
  2993.  
  2994.                 if ( queue(this, type).length == 1 )
  2995.                     fn.apply(this);
  2996.             }
  2997.         });
  2998.     },
  2999.  
  3000.     stop: function(clearQueue, gotoEnd){
  3001.         var timers = jQuery.timers;
  3002.  
  3003.         if (clearQueue)
  3004.             this.queue([]);
  3005.  
  3006.         this.each(function(){
  3007.             // go in reverse order so anything added to the queue during the loop is ignored
  3008.             for ( var i = timers.length - 1; i >= 0; i-- )
  3009.                 if ( timers[i].elem == this ) {
  3010.                     if (gotoEnd)
  3011.                         // force the next step to be the last
  3012.                         timers[i](true);
  3013.                     timers.splice(i, 1);
  3014.                 }
  3015.         });
  3016.  
  3017.         // start the next in the queue if the last step wasn't forced
  3018.         if (!gotoEnd)
  3019.             this.dequeue();
  3020.  
  3021.         return this;
  3022.     }
  3023.  
  3024. });
  3025.  
  3026. var queue = function( elem, type, array ) {
  3027.     if ( !elem )
  3028.         return undefined;
  3029.  
  3030.     type = type || "fx";
  3031.  
  3032.     var q = jQuery.data( elem, type + "queue" );
  3033.  
  3034.     if ( !q || array )
  3035.         q = jQuery.data( elem, type + "queue", 
  3036.             array ? jQuery.makeArray(array) : [] );
  3037.  
  3038.     return q;
  3039. };
  3040.  
  3041. jQuery.fn.dequeue = function(type){
  3042.     type = type || "fx";
  3043.  
  3044.     return this.each(function(){
  3045.         var q = queue(this, type);
  3046.  
  3047.         q.shift();
  3048.  
  3049.         if ( q.length )
  3050.             q[0].apply( this );
  3051.     });
  3052. };
  3053.  
  3054. jQuery.extend({
  3055.  
  3056.     speed: function(speed, easing, fn) {
  3057.         var opt = speed && speed.constructor == Object ? speed : {
  3058.             complete: fn || !fn && easing || 
  3059.                 jQuery.isFunction( speed ) && speed,
  3060.             duration: speed,
  3061.             easing: fn && easing || easing && easing.constructor != Function && easing
  3062.         };
  3063.  
  3064.         opt.duration = (opt.duration && opt.duration.constructor == Number ? 
  3065.             opt.duration : 
  3066.             { slow: 600, fast: 200 }[opt.duration]) || 400;
  3067.  
  3068.         // Queueing
  3069.         opt.old = opt.complete;
  3070.         opt.complete = function(){
  3071.             if ( opt.queue !== false )
  3072.                 jQuery(this).dequeue();
  3073.             if ( jQuery.isFunction( opt.old ) )
  3074.                 opt.old.apply( this );
  3075.         };
  3076.  
  3077.         return opt;
  3078.     },
  3079.  
  3080.     easing: {
  3081.         linear: function( p, n, firstNum, diff ) {
  3082.             return firstNum + diff * p;
  3083.         },
  3084.         swing: function( p, n, firstNum, diff ) {
  3085.             return ((-Math.cos(p*Math.PI)/2) + 0.5) * diff + firstNum;
  3086.         }
  3087.     },
  3088.  
  3089.     timers: [],
  3090.     timerId: null,
  3091.  
  3092.     fx: function( elem, options, prop ){
  3093.         this.options = options;
  3094.         this.elem = elem;
  3095.         this.prop = prop;
  3096.  
  3097.         if ( !options.orig )
  3098.             options.orig = {};
  3099.     }
  3100.  
  3101. });
  3102.  
  3103. jQuery.fx.prototype = {
  3104.  
  3105.     // Simple function for setting a style value
  3106.     update: function(){
  3107.         if ( this.options.step )
  3108.             this.options.step.apply( this.elem, [ this.now, this ] );
  3109.  
  3110.         (jQuery.fx.step[this.prop] || jQuery.fx.step._default)( this );
  3111.  
  3112.         // Set display property to block for height/width animations
  3113.         if ( this.prop == "height" || this.prop == "width" )
  3114.             this.elem.style.display = "block";
  3115.     },
  3116.  
  3117.     // Get the current size
  3118.     cur: function(force){
  3119.         if ( this.elem[this.prop] != null && this.elem.style[this.prop] == null )
  3120.             return this.elem[ this.prop ];
  3121.  
  3122.         var r = parseFloat(jQuery.css(this.elem, this.prop, force));
  3123.         return r && r > -10000 ? r : parseFloat(jQuery.curCSS(this.elem, this.prop)) || 0;
  3124.     },
  3125.  
  3126.     // Start an animation from one number to another
  3127.     custom: function(from, to, unit){
  3128.         this.startTime = (new Date()).getTime();
  3129.         this.start = from;
  3130.         this.end = to;
  3131.         this.unit = unit || this.unit || "px";
  3132.         this.now = this.start;
  3133.         this.pos = this.state = 0;
  3134.         this.update();
  3135.  
  3136.         var self = this;
  3137.         function t(gotoEnd){
  3138.             return self.step(gotoEnd);
  3139.         }
  3140.  
  3141.         t.elem = this.elem;
  3142.  
  3143.         jQuery.timers.push(t);
  3144.  
  3145.         if ( jQuery.timerId == null ) {
  3146.             jQuery.timerId = setInterval(function(){
  3147.                 var timers = jQuery.timers;
  3148.  
  3149.                 for ( var i = 0; i < timers.length; i++ )
  3150.                     if ( !timers[i]() )
  3151.                         timers.splice(i--, 1);
  3152.  
  3153.                 if ( !timers.length ) {
  3154.                     clearInterval( jQuery.timerId );
  3155.                     jQuery.timerId = null;
  3156.                 }
  3157.             }, 13);
  3158.         }
  3159.     },
  3160.  
  3161.     // Simple 'show' function
  3162.     show: function(){
  3163.         // Remember where we started, so that we can go back to it later
  3164.         this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  3165.         this.options.show = true;
  3166.  
  3167.         // Begin the animation
  3168.         this.custom(0, this.cur());
  3169.  
  3170.         // Make sure that we start at a small width/height to avoid any
  3171.         // flash of content
  3172.         if ( this.prop == "width" || this.prop == "height" )
  3173.             this.elem.style[this.prop] = "1px";
  3174.  
  3175.         // Start by showing the element
  3176.         jQuery(this.elem).show();
  3177.     },
  3178.  
  3179.     // Simple 'hide' function
  3180.     hide: function(){
  3181.         // Remember where we started, so that we can go back to it later
  3182.         this.options.orig[this.prop] = jQuery.attr( this.elem.style, this.prop );
  3183.         this.options.hide = true;
  3184.  
  3185.         // Begin the animation
  3186.         this.custom(this.cur(), 0);
  3187.     },
  3188.  
  3189.     // Each step of an animation
  3190.     step: function(gotoEnd){
  3191.         var t = (new Date()).getTime();
  3192.  
  3193.         if ( gotoEnd || t > this.options.duration + this.startTime ) {
  3194.             this.now = this.end;
  3195.             this.pos = this.state = 1;
  3196.             this.update();
  3197.  
  3198.             this.options.curAnim[ this.prop ] = true;
  3199.  
  3200.             var done = true;
  3201.             for ( var i in this.options.curAnim )
  3202.                 if ( this.options.curAnim[i] !== true )
  3203.                     done = false;
  3204.  
  3205.             if ( done ) {
  3206.                 if ( this.options.display != null ) {
  3207.                     // Reset the overflow
  3208.                     this.elem.style.overflow = this.options.overflow;
  3209.  
  3210.                     // Reset the display
  3211.                     this.elem.style.display = this.options.display;
  3212.                     if ( jQuery.css(this.elem, "display") == "none" )
  3213.                         this.elem.style.display = "block";
  3214.                 }
  3215.  
  3216.                 // Hide the element if the "hide" operation was done
  3217.                 if ( this.options.hide )
  3218.                     this.elem.style.display = "none";
  3219.  
  3220.                 // Reset the properties, if the item has been hidden or shown
  3221.                 if ( this.options.hide || this.options.show )
  3222.                     for ( var p in this.options.curAnim )
  3223.                         jQuery.attr(this.elem.style, p, this.options.orig[p]);
  3224.             }
  3225.  
  3226.             // If a callback was provided, execute it
  3227.             if ( done && jQuery.isFunction( this.options.complete ) )
  3228.                 // Execute the complete function
  3229.                 this.options.complete.apply( this.elem );
  3230.  
  3231.             return false;
  3232.         } else {
  3233.             var n = t - this.startTime;
  3234.             this.state = n / this.options.duration;
  3235.  
  3236.             // Perform the easing function, defaults to swing
  3237.             this.pos = jQuery.easing[this.options.easing || (jQuery.easing.swing ? "swing" : "linear")](this.state, n, 0, 1, this.options.duration);
  3238.             this.now = this.start + ((this.end - this.start) * this.pos);
  3239.  
  3240.             // Perform the next step of the animation
  3241.             this.update();
  3242.         }
  3243.  
  3244.         return true;
  3245.     }
  3246.  
  3247. };
  3248.  
  3249. jQuery.fx.step = {
  3250.     scrollLeft: function(fx){
  3251.         fx.elem.scrollLeft = fx.now;
  3252.     },
  3253.  
  3254.     scrollTop: function(fx){
  3255.         fx.elem.scrollTop = fx.now;
  3256.     },
  3257.  
  3258.     opacity: function(fx){
  3259.         jQuery.attr(fx.elem.style, "opacity", fx.now);
  3260.     },
  3261.  
  3262.     _default: function(fx){
  3263.         fx.elem.style[ fx.prop ] = fx.now + fx.unit;
  3264.     }
  3265. };
  3266. // The Offset Method
  3267. // Originally By Brandon Aaron, part of the Dimension Plugin
  3268. // http://jquery.com/plugins/project/dimensions
  3269. jQuery.fn.offset = function() {
  3270.     var left = 0, top = 0, elem = this[0], results;
  3271.  
  3272.     if ( elem ) with ( jQuery.browser ) {
  3273.         var parent       = elem.parentNode, 
  3274.             offsetChild  = elem,
  3275.             offsetParent = elem.offsetParent, 
  3276.             doc          = elem.ownerDocument,
  3277.             safari2      = safari && parseInt(version) < 522,
  3278.             fixed        = jQuery.css(elem, "position") == "fixed";
  3279.  
  3280.         // Use getBoundingClientRect if available
  3281.         if ( elem.getBoundingClientRect ) {
  3282.             var box = elem.getBoundingClientRect();
  3283.  
  3284.             // Add the document scroll offsets
  3285.             add(box.left + Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft),
  3286.                 box.top  + Math.max(doc.documentElement.scrollTop,  doc.body.scrollTop));
  3287.  
  3288.             // IE adds the HTML element's border, by default it is medium which is 2px
  3289.             // IE 6 and 7 quirks mode the border width is overwritable by the following css html { border: 0; }
  3290.             // IE 7 standards mode, the border is always 2px
  3291.             // This border/offset is typically represented by the clientLeft and clientTop properties
  3292.             // However, in IE6 and 7 quirks mode the clientLeft and clientTop properties are not updated when overwriting it via CSS
  3293.             // Therefore this method will be off by 2px in IE while in quirksmode
  3294.             add( -doc.documentElement.clientLeft, -doc.documentElement.clientTop );
  3295.  
  3296.         // Otherwise loop through the offsetParents and parentNodes
  3297.         } else {
  3298.  
  3299.             // Initial element offsets
  3300.             add( elem.offsetLeft, elem.offsetTop );
  3301.  
  3302.             // Get parent offsets
  3303.             while ( offsetParent ) {
  3304.                 // Add offsetParent offsets
  3305.                 add( offsetParent.offsetLeft, offsetParent.offsetTop );
  3306.  
  3307.                 // Mozilla and Safari > 2 does not include the border on offset parents
  3308.                 // However Mozilla adds the border for table or table cells
  3309.                 if ( mozilla && !/^t(able|d|h)$/i.test(offsetParent.tagName) || safari && !safari2 )
  3310.                     border( offsetParent );
  3311.  
  3312.                 // Add the document scroll offsets if position is fixed on any offsetParent
  3313.                 if ( !fixed && jQuery.css(offsetParent, "position") == "fixed" )
  3314.                     fixed = true;
  3315.  
  3316.                 // Set offsetChild to previous offsetParent unless it is the body element
  3317.                 offsetChild  = /^body$/i.test(offsetParent.tagName) ? offsetChild : offsetParent;
  3318.                 // Get next offsetParent
  3319.                 offsetParent = offsetParent.offsetParent;
  3320.             }
  3321.  
  3322.             // Get parent scroll offsets
  3323.             while ( parent && parent.tagName && !/^body|html$/i.test(parent.tagName) ) {
  3324.                 // Remove parent scroll UNLESS that parent is inline or a table to work around Opera inline/table scrollLeft/Top bug
  3325.                 if ( !/^inline|table.*$/i.test(jQuery.css(parent, "display")) )
  3326.                     // Subtract parent scroll offsets
  3327.                     add( -parent.scrollLeft, -parent.scrollTop );
  3328.  
  3329.                 // Mozilla does not add the border for a parent that has overflow != visible
  3330.                 if ( mozilla && jQuery.css(parent, "overflow") != "visible" )
  3331.                     border( parent );
  3332.  
  3333.                 // Get next parent
  3334.                 parent = parent.parentNode;
  3335.             }
  3336.  
  3337.             // Safari <= 2 doubles body offsets with a fixed position element/offsetParent or absolutely positioned offsetChild
  3338.             // Mozilla doubles body offsets with a non-absolutely positioned offsetChild
  3339.             if ( (safari2 && (fixed || jQuery.css(offsetChild, "position") == "absolute")) || 
  3340.                 (mozilla && jQuery.css(offsetChild, "position") != "absolute") )
  3341.                     add( -doc.body.offsetLeft, -doc.body.offsetTop );
  3342.  
  3343.             // Add the document scroll offsets if position is fixed
  3344.             if ( fixed )
  3345.                 add(Math.max(doc.documentElement.scrollLeft, doc.body.scrollLeft),
  3346.                     Math.max(doc.documentElement.scrollTop,  doc.body.scrollTop));
  3347.         }
  3348.  
  3349.         // Return an object with top and left properties
  3350.         results = { top: top, left: left };
  3351.     }
  3352.  
  3353.     function border(elem) {
  3354.         add( jQuery.curCSS(elem, "borderLeftWidth", true), jQuery.curCSS(elem, "borderTopWidth", true) );
  3355.     }
  3356.  
  3357.     function add(l, t) {
  3358.         left += parseInt(l) || 0;
  3359.         top += parseInt(t) || 0;
  3360.     }
  3361.  
  3362.     return results;
  3363. };
  3364. })();
  3365.     </script><script type="text/javascript">
  3366. ;(function($) {
  3367.  
  3368.     $.extend($.fn, {
  3369.         swapClass: function(c1, c2) {
  3370.             var c1Elements = this.filter('.' + c1);
  3371.             this.filter('.' + c2).removeClass(c2).addClass(c1);
  3372.             c1Elements.removeClass(c1).addClass(c2);
  3373.             return this;
  3374.         },
  3375.         replaceClass: function(c1, c2) {
  3376.             return this.filter('.' + c1).removeClass(c1).addClass(c2).end();
  3377.         },
  3378.         hoverClass: function(className) {
  3379.             className = className || "hover";
  3380.             return this.hover(function() {
  3381.                 $(this).addClass(className);
  3382.             }, function() {
  3383.                 $(this).removeClass(className);
  3384.             });
  3385.         },
  3386.         heightToggle: function(animated, callback) {
  3387.             animated ?
  3388.                 this.animate({ height: "toggle" }, animated, callback) :
  3389.                 this.each(function(){
  3390.                     jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ]();
  3391.                     if(callback)
  3392.                         callback.apply(this, arguments);
  3393.                 });
  3394.         },
  3395.         heightHide: function(animated, callback) {
  3396.             if (animated) {
  3397.                 this.animate({ height: "hide" }, animated, callback);
  3398.             } else {
  3399.                 this.hide();
  3400.                 if (callback)
  3401.                     this.each(callback);                
  3402.             }
  3403.         },
  3404.         prepareBranches: function(settings) {
  3405.             if (!settings.prerendered) {
  3406.                 // mark last tree items
  3407.                 this.filter(":last-child:not(ul)").addClass(CLASSES.last);
  3408.                 // collapse whole tree, or only those marked as closed, anyway except those marked as open
  3409.                 this.filter((settings.collapsed ? "" : "." + CLASSES.closed) + ":not(." + CLASSES.open + ")").find(">ul").hide();
  3410.             }
  3411.             // return all items with sublists
  3412.             return this.filter(":has(>ul)");
  3413.         },
  3414.         applyClasses: function(settings, toggler) {
  3415.             this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event) {
  3416.                 toggler.apply($(this).next());
  3417.             }).add( $("a", this) ).hoverClass();
  3418.  
  3419.             if (!settings.prerendered) {
  3420.                 // handle closed ones first
  3421.                 this.filter(":has(>ul:hidden)")
  3422.                         .addClass(CLASSES.expandable)
  3423.                         .replaceClass(CLASSES.last, CLASSES.lastExpandable);
  3424.  
  3425.                 // handle open ones
  3426.                 this.not(":has(>ul:hidden)")
  3427.                         .addClass(CLASSES.collapsable)
  3428.                         .replaceClass(CLASSES.last, CLASSES.lastCollapsable);
  3429.  
  3430.                 // create hitarea
  3431.                 this.prepend("<div class=\"" + CLASSES.hitarea + "\"/>").find("div." + CLASSES.hitarea).each(function() {
  3432.                     var classes = "";
  3433.                     $.each($(this).parent().attr("class").split(" "), function() {
  3434.                         classes += this + "-hitarea ";
  3435.                     });
  3436.                     $(this).addClass( classes );
  3437.                 });
  3438.             }
  3439.  
  3440.             // apply event to hitarea
  3441.             this.find("div." + CLASSES.hitarea).click( toggler );
  3442.         },
  3443.         treeview: function(settings) {
  3444.  
  3445.             settings = $.extend({
  3446.                 cookieId: "treeview"
  3447.             }, settings);
  3448.  
  3449.             if (settings.add) {
  3450.                 return this.trigger("add", [settings.add]);
  3451.             }
  3452.  
  3453.             if ( settings.toggle ) {
  3454.                 var callback = settings.toggle;
  3455.                 settings.toggle = function() {
  3456.                     return callback.apply($(this).parent()[0], arguments);
  3457.                 };
  3458.             }
  3459.  
  3460.             // factory for treecontroller
  3461.             function treeController(tree, control) {
  3462.                 // factory for click handlers
  3463.                 function handler(filter) {
  3464.                     return function() {
  3465.                         // reuse toggle event handler, applying the elements to toggle
  3466.                         // start searching for all hitareas
  3467.                         toggler.apply( $("div." + CLASSES.hitarea, tree).filter(function() {
  3468.                             // for plain toggle, no filter is provided, otherwise we need to check the parent element
  3469.                             return filter ? $(this).parent("." + filter).length : true;
  3470.                         }) );
  3471.                         return false;
  3472.                     };
  3473.                 }
  3474.                 // click on first element to collapse tree
  3475.                 $("a:eq(0)", control).click( handler(CLASSES.collapsable) );
  3476.                 // click on second to expand tree
  3477.                 $("a:eq(1)", control).click( handler(CLASSES.expandable) );
  3478.                 // click on third to toggle tree
  3479.                 $("a:eq(2)", control).click( handler() ); 
  3480.             }
  3481.  
  3482.             // handle toggle event
  3483.             function toggler() {
  3484.                 $(this)
  3485.                     .parent()
  3486.                     // swap classes for hitarea
  3487.                     .find(">.hitarea")
  3488.                         .swapClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea )
  3489.                         .swapClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea )
  3490.                     .end()
  3491.                     // swap classes for parent li
  3492.                     .swapClass( CLASSES.collapsable, CLASSES.expandable )
  3493.                     .swapClass( CLASSES.lastCollapsable, CLASSES.lastExpandable )
  3494.                     // find child lists
  3495.                     .find( ">ul" )
  3496.                     // toggle them
  3497.                     .heightToggle( settings.animated, settings.toggle );
  3498.                 if ( settings.unique ) {
  3499.                     $(this).parent()
  3500.                         .siblings()
  3501.                         // swap classes for hitarea
  3502.                         .find(">.hitarea")
  3503.                             .replaceClass( CLASSES.collapsableHitarea, CLASSES.expandableHitarea )
  3504.                             .replaceClass( CLASSES.lastCollapsableHitarea, CLASSES.lastExpandableHitarea )
  3505.                         .end()
  3506.                         .replaceClass( CLASSES.collapsable, CLASSES.expandable )
  3507.                         .replaceClass( CLASSES.lastCollapsable, CLASSES.lastExpandable )
  3508.                         .find( ">ul" )
  3509.                         .heightHide( settings.animated, settings.toggle );
  3510.                 }
  3511.             }
  3512.  
  3513.             function serialize() {
  3514.                 function binary(arg) {
  3515.                     return arg ? 1 : 0;
  3516.                 }
  3517.                 var data = [];
  3518.                 branches.each(function(i, e) {
  3519.                     data[i] = $(e).is(":has(>ul:visible)") ? 1 : 0;
  3520.                 });
  3521.                 $.cookie(settings.cookieId, data.join("") );
  3522.             }
  3523.  
  3524.             function deserialize() {
  3525.                 var stored = $.cookie(settings.cookieId);
  3526.                 if ( stored ) {
  3527.                     var data = stored.split("");
  3528.                     branches.each(function(i, e) {
  3529.                         $(e).find(">ul")[ parseInt(data[i]) ? "show" : "hide" ]();
  3530.                     });
  3531.                 }
  3532.             }
  3533.  
  3534.             // add treeview class to activate styles
  3535.             this.addClass("treeview");
  3536.  
  3537.             // prepare branches and find all tree items with child lists
  3538.             var branches = this.find("li").prepareBranches(settings);
  3539.  
  3540.             switch(settings.persist) {
  3541.             case "cookie":
  3542.                 var toggleCallback = settings.toggle;
  3543.                 settings.toggle = function() {
  3544.                     serialize();
  3545.                     if (toggleCallback) {
  3546.                         toggleCallback.apply(this, arguments);
  3547.                     }
  3548.                 };
  3549.                 deserialize();
  3550.                 break;
  3551.             case "location":
  3552.                 var current = this.find("a").filter(function() { return this.href.toLowerCase() == location.href.toLowerCase(); });
  3553.                 if ( current.length ) {
  3554.                     current.addClass("selected").parents("ul, li").add( current.next() ).show();
  3555.                 }
  3556.                 break;
  3557.             }
  3558.  
  3559.             branches.applyClasses(settings, toggler);
  3560.  
  3561.             // if control option is set, create the treecontroller and show it
  3562.             if ( settings.control ) {
  3563.                 treeController(this, settings.control);
  3564.                 $(settings.control).show();
  3565.             }
  3566.  
  3567.             return this.bind("add", function(event, branches) {
  3568.                 $(branches).prev()
  3569.                     .removeClass(CLASSES.last)
  3570.                     .removeClass(CLASSES.lastCollapsable)
  3571.                     .removeClass(CLASSES.lastExpandable)
  3572.                 .find(">.hitarea")
  3573.                     .removeClass(CLASSES.lastCollapsableHitarea)
  3574.                     .removeClass(CLASSES.lastExpandableHitarea);
  3575.                 $(branches).find("li").andSelf().prepareBranches(settings).applyClasses(settings, toggler);
  3576.             });
  3577.         }
  3578.     });
  3579.  
  3580.     // classes used by the plugin
  3581.     // need to be styled via external stylesheet, see first example
  3582.     var CLASSES = $.fn.treeview.classes = {
  3583.         open: "open",
  3584.         closed: "closed",
  3585.         expandable: "expandable",
  3586.         expandableHitarea: "expandable-hitarea",
  3587.         lastExpandableHitarea: "lastExpandable-hitarea",
  3588.         collapsable: "collapsable",
  3589.         collapsableHitarea: "collapsable-hitarea",
  3590.         lastCollapsableHitarea: "lastCollapsable-hitarea",
  3591.         lastCollapsable: "lastCollapsable",
  3592.         lastExpandable: "lastExpandable",
  3593.         last: "last",
  3594.         hitarea: "hitarea"
  3595.     };
  3596.  
  3597.     // provide backwards compability
  3598.     $.fn.Treeview = $.fn.treeview;
  3599.  
  3600. })(jQuery);</script><script type="text/javascript">
  3601.         $(function() {
  3602.             $("#tree").treeview({
  3603.                 collapsed: true,
  3604.                 animated: "medium",
  3605.                 control:"#sidetreecontrol"
  3606.             });
  3607.         })
  3608.  
  3609.     </script></p>
  3610. <div class="contaniner">
  3611. <h1>Learning &amp; Training</h1>
  3612. <p>Welcome to Learning and Training for Service Management. This page provides you access to the available training material that has been developed for Service Management. To review any of the material click on link provided.</p>
  3613. <div id="sidetreecontrol"><a href="?#">Collapse All</a> | <a href="?#">Expand All</a></div>
  3614. <ul id="tree">
  3615.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/servicemanagementicon.png)"><span class="heading">Service Management </span>
  3616.     <ul>
  3617.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Servicemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://content.nestle.com/nikitashare/siteview/itemDisplay.asp?ins_idnt=AE74625F-CE79-4982-AF69-8231E1CF37FB">Service Management Training Link</a></li>
  3618.     </ul>
  3619.     </li>
  3620.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Availability.png)"><span class="heading">Availability Management</span>
  3621.     <ul>
  3622.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/availability.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_500_V15/MP_001287_PPT.ppt">Availability Management Training Material</a></li>
  3623.     </ul>
  3624.     </li>
  3625.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.png)"><span class="heading">Interaction Management</span>
  3626.     <ul>
  3627.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://ecm.ctr.nestle.com/globelib/drl/objectId/0900f3d380f25805%20">IIRM Module 2 lesson 1 Process Overview</a></li>
  3628.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://ecm.ctr.nestle.com/globelib/drl/objectId/0900f3d380f28b94%20">IIRM Module 2 lesson 2 Process Fundamentals &amp; Golden Rules</a></li>
  3629.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_210_V15/MP_000274_PPTX.pptx">IIRM Module 3 lesson 1 Interaction Management</a></li>
  3630.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_210_V15/MP_000288_PPTX.pptx">IIRM Module 3 lesson 2 Monitoring and Control </a></li>
  3631.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Callmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://ecm.ctr.nestle.com/globelib/drl/objectId/0900f3d380f55026%20">QRC Interaction Analyst</a></li>
  3632.     </ul>
  3633.     </li>
  3634.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/ChangeMangement.png)"><span class="heading">Change Management</span>
  3635.     <ul>
  3636.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/trainerbased.gif)"><span class="heading">Trainer Based Material</span>
  3637.         <ul>
  3638.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001288_PPT.ppt">IT Best Practices - Change Management - Full Training</a></li>
  3639.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001289_PPT.ppt">IT Best Practices - Change Management - Refresh Training</a></li>
  3640.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001290_PPT.ppt">IT CHM Coordinator Training</a></li>
  3641.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001292_PPT.ppt">Functional CHM Coordinator Training</a></li>
  3642.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001291_PPT.ppt">GBSL &ndash; Dual Maintenance Change &ndash; Release Process Overview</a></li>
  3643.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/MP_001341_PPT.ppt">GBSL - Dual Maintenance Change -Retrofit Process (Detailed)</a></li>
  3644.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_260_V15/QRC_001512_PPT.ppt">Best Practices - QRG - Change Management</a></li>
  3645.         </ul>
  3646.         </li>
  3647.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/toolbased.png)"><span class="heading">Tool Training </span>
  3648.         <ul>
  3649.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Creating%20Change&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Creating a Change</a></li>
  3650.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Assessing%20Change&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Assessing a Change</a></li>
  3651.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Approving%20Change&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Approving a Change</a></li>
  3652.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Changemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Change%20Closure&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Change Closure</a></li>
  3653.         </ul>
  3654.         </li>
  3655.     </ul>
  3656.     </li>
  3657.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/ConfigurationManagement.png)"><span class="heading">Configuration Management</span>
  3658.     <ul>
  3659.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://content.nestle.com/nikitashare/siteview/itemDisplay.asp?ins_idnt=25F65DB6-D3B4-44C0-B85E-534DD7AD6EAC">Configuration Management Training Link</a></li>
  3660.     </ul>
  3661.     </li>
  3662.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/ConfigurationManagement.png)"><span class="heading">SM Decision Support</span>
  3663.     <ul>
  3664.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_230_V15/MP_000289_PPTX.pptx">IIRM Module 5 lesson 1 Decision Support Essentials</a></li>
  3665.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_230_V15/MP_000290_PPTX.pptx">IIRM Module 5 lesson 2 Operational Reporting</a></li>
  3666.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_230_V15/MP_000291_PPTX.pptx">IIRM Module 5 lesson 3 Analytical Reporting</a></li>
  3667.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_230_V15/MP_000323_PPTX.pptx">Assignment Group Performance Report (AGPR)</a></li>
  3668.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_210_V15/MP_000288_PPTX.pptx">IIRM Module 3 lesson 2 Monitoring and Control</a></li>
  3669.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000285_PPTX.pptx">IIRM Module 4 Lesson 4 Monitoring and Control</a></li>
  3670.         <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/configurationmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000311_PPTX.pptx">PM Module 3 Lesson 6 Monitoring and Control</a></li>
  3671.     </ul>
  3672.     </li>
  3673. </ul>
  3674. <ul id="tree">
  3675.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/IncedenetManagement.png)"><span class="heading">Incident and Request Management</span>
  3676.     <ul>
  3677.         <ul>
  3678.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://content.nestle.com/nikitashare/siteview/itemDisplay.asp?ins_idnt=09F96118-9D7D-4B04-9FDE-A1B70D455802">MY SERVICE DESK Training Link</a></li>
  3679.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/QRC_001510_PPT.ppt">MY SERVICE DESK - QRC - Contributors</a></li>
  3680.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/QRC_001509_PPT.ppt">MY SERVICE DESK - QRC - Administrators</a></li>
  3681.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Creating%20an%20Incident&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Creating an Incident</a></li>
  3682.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=update%20incident%20ticket&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Update Reassign an Incident</a></li>
  3683.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Set%20RG%20Collaboration&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Set an RG in Collaboration</a></li>
  3684.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Resolve%20Incident%20Ticket&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Resolving an Incident</a></li>
  3685.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none">
  3686.             <ul>
  3687.                 <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><span class="heading">Escalation Management</span>
  3688.                 <ul>
  3689.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000143_PPT.ppt">Management Escalation</a></li>
  3690.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000146_PPT.ppt">Major Incident Management Generic Information </a></li>
  3691.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000147_PPT.ppt">Communication Principles</a></li>
  3692.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000148_PPT.ppt">Major Incident Ownership and Process</a></li>
  3693.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000149_PPT.ppt">Major Incident Manager</a></li>
  3694.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000150_PPT.ppt">Major Incident Owner</a></li>
  3695.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000151_PPT.ppt">Planning Manager</a></li>
  3696.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000152_PPT.ppt">Communication Manager</a></li>
  3697.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000153_PPT.ppt">HR Manager</a></li>
  3698.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000154_PPT.ppt">Local Facilities Manager</a></li>
  3699.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000155_PPT.ppt">Summary of Roles</a></li>
  3700.                     <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_200_V15/SP_000156_PPT.ppt">Questions on Major Incident Process </a></li>
  3701.                 </ul>
  3702.                 </li>
  3703.             </ul>
  3704.             </li>
  3705.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000279_PPTX.pptx">IIRM Module 1 Lesson 3 Ticket Classification</a></li>
  3706.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000280_PPTX.pptx">IIRM Module 2 lesson 1 Process Overview</a></li>
  3707.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000281_PPTX.pptx">IIRM Module 2 lesson 2 Process Fundamentals &amp; Golden Rules</a></li>
  3708.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000282_PPTX.pptx">IIRM Module 4 Lesson 1 Acceptance</a></li>
  3709.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000283_PPTX.pptx">IIRM Module 4 Lesson 2 Investigation Diagnosis and Resolution</a></li>
  3710.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000284_PPTX.pptx">IIRM Module 4 Lesson 3 Closure</a></li>
  3711.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/MP_000285_PPTX.pptx">IIRM Module 4 Lesson 4 Monitoring and Control</a></li>
  3712.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/QRC_000032_PPTX.pptx">QRC IMRM Assignment Group Analyst</a></li>
  3713.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/QRC_000033_PPTX.pptx">QRC Incident Coordinator</a></li>
  3714.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/incidentmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_200_V15/QRC_000031_PPTX.pptx">QRC Assignment Group Administration</a></li>
  3715.         </ul>
  3716.     </ul>
  3717.     </li>
  3718.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/KnowledgeMangement.png)"><span class="heading">Knowledge Management</span>
  3719.     <ul>
  3720.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/trainerbased.gif)"><span class="heading">Trainer Based Material</span>
  3721.         <ul>
  3722.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3723.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001387_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Knowledge Management Essentials - Overview of Knowledge Management Scope, process and roles </font></span></a><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001387_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Knowledge</font></span></a></p>
  3724.             </li>
  3725.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3726.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001388_PPT.ppt"><span style="font-family: Verdana">Knowledge Management Essentials - Advanced explanation of the different Knowledge Management Roles</span></a></p>
  3727.             </li>
  3728.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3729.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001390_PPT.ppt"><span style="font-family: Verdana">Knowledge Management Essentials - Explanation of the Knowledge Management Document attributes</span></a><span style="font-family: Verdana">&nbsp;</span></p>
  3730.             </li>
  3731.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3732.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001391_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Creation and Modification of Knowledge Documents - Creating a new KM Document</font></span></a></p>
  3733.             </li>
  3734.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3735.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001392_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Creation and Modification of Knowledge Documents - Modifying KM Documents</font></span></a><span style="font-family: Verdana">&nbsp;</span></p>
  3736.             </li>
  3737.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3738.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001393_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Review and Approval &ndash; Managing Knowledge Changes</font></span></a></p>
  3739.             </li>
  3740.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3741.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001394_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Review and Approval &ndash; Reviewing submitted KM Documents</font></span></a></p>
  3742.             </li>
  3743.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3744.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001395_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Review and Approval &ndash; Approving submitted KM Document</font></span></a></p>
  3745.             </li>
  3746.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3747.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001396_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Continuous improvement - Identifying Missing Content, Reviewing and Reworking</font></span></a><span style="font-family: Verdana"> </span></p>
  3748.             </li>
  3749.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none">
  3750.             <p><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_400_V15/MP_001397_PPT.ppt"><span style="font-family: Verdana"><font color="#0000ff">Continuous improvement - Usage of the Solution and Quality Monitoring</font></span></a><o:p></o:p></p>
  3751.             </li>
  3752.         </ul>
  3753.         </li>
  3754.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/selfpaced.jpeg)"><span class="heading">Self-Paced Training</span>
  3755.         <ul>
  3756.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/Knowledgemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=started&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">How to get Started</a></li>
  3757.         </ul>
  3758.         </li>
  3759.     </ul>
  3760.     <!--<li><span class="heading" >Management on Duty & Critical Incident Processes - To determine where it should reside </span>
  3761.         <ul>
  3762.         </ul>
  3763.     </li>
  3764.  
  3765.     <li><span class="heading" >MY SERVICE DESK - To determine where it should reside</span>
  3766.         <ul>
  3767.         </ul>
  3768.     </li>--></li>
  3769.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/ProblemManagement.png)"><span class="heading">Problem Management</span>
  3770.     <ul>
  3771.         <ul>
  3772.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000307_PPTX.pptx">PM Module 2 Lesson 1 Process Overview </a></li>
  3773.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000308_PPTX.pptx">PM Module 2 Lesson 2 Process Fundamentals and Golden Rules</a></li>
  3774.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000309_PPTX.pptx">PM Module 3 Lesson 1 Problem Detection, Logging and Classification</a></li>
  3775.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000301_PPTX.pptx">PM Module 3 Lesson 2 Problem Prioritization and Planning</a></li>
  3776.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000302_PPTX.pptx">PM Module 3 Lesson 3 Problem Investigation and Diagnosis</a></li>
  3777.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000303_PPTX.pptx">PM Module 3 Lesson 4 Problem Resolution</a></li>
  3778.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000310_PPTX.pptx">PM Module 3 Lesson 5 Problem Review and Closure</a></li>
  3779.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/MP_000311_PPTX.pptx">PM Module 3 Lesson 6 Monitoring and Control</a></li>
  3780.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/QRC_000035_PPTX.pptx">QRC Problem AGA</a></li>
  3781.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/problemmanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="_blank" href="http://webapps1.nestle.com/EUL1/UI/OpenLearningMaterial.aspx?languageCode=en_GT&amp;name=ISITBTC_SM_250_V15/QRC_000036_PPTX.pptx">QRC Problem Coordinator</a></li>
  3782.         </ul>
  3783.     </ul>
  3784.     </li>
  3785.     <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/ReleaseManagement.png)"><span class="heading">Release Management</span>
  3786.     <ul>
  3787.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/trainerbased.gif)"><span class="heading">Trainer Based Material</span>
  3788.         <ul>
  3789.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_270_V15/MP_001293_PPT.ppt">Best Practices - Release Management - Full Training</a></li>
  3790.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_270_V15/MP_001294_PPT.ppt">Best Practices - Release Management - Refresh Training</a></li>
  3791.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_270_V15/MP_001295_PPT.ppt">RLM Coordinator Training</a></li>
  3792.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps1.nestle.com/Eul1/LMI_OBJECTS/en_GT/ISITBTC_SM_270_V15/QRC_001513_PPT.ppt">Best Practices - QRG - Release Management</a></li>
  3793.         </ul>
  3794.         </li>
  3795.         <li style="list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/toolbased.png)"><span class="heading">Tool Training</span>
  3796.         <ul>
  3797.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Implementing%20Change&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Implementing a Change</a></li>
  3798.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Release%20Activities&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center &ndash; Release Activities Task Creation Course</a></li>
  3799.             <li style="border-right: medium none; border-top: medium none; list-style-image: url(http://content.nestle.com/globe/btc/upload/nonIndexable/images/releasemanagement.jpg); border-left: medium none; border-bottom: medium none"><a target="" href="http://webapps4.nestle.com/Eul1/UI/MaterialResultPage.aspx?keyWord=Outage%20Creation&amp;processId=0b01aa31800c40b3&amp;processName=ISIT_BTC">Service Center - Outage Creation</a></li>
  3800.         </ul>
  3801.         </li>
  3802.     </ul>
  3803.     </li>
  3804. </ul>
  3805. </div>
  3806. <p>&nbsp;</p>
Attached Images
File Type: jpg attachment.jpg (13.8 KB, 88 views)
Dec 31 '10 #1
0 1953

Sign in to post your reply or Sign up for a free account.

Similar topics

5
by: mooeypoo | last post by:
Hello all, I'm a php developer. I have been using a very simple script to hide/unhide divs in my script: function DisplayI(obj) { obj.style.display=("none"==obj.style.display? "block" :...
2
by: Peter K | last post by:
How do I Hide/Unhide the Main Database Window in VB?
0
by: Tinus | last post by:
Hello all, I was wondering.... Is there a way to hide/unhide the Desktop Icons in C#? I've googled the net for it but couldn't find anything usefull :-( ANd if it is possiple, could someone...
1
by: Peter Williams | last post by:
Hello All, I'm a newbie to this ng. I'm posting here because I have a question about debugging some javascript on some pages of my website. Please don't call me a "troll" -- because I'm not one....
3
by: toodi4 | last post by:
I'm using a javascript that hides and unhides text based on a button click. It works great across static fields on a form. The problem I have is that I'm trying to hide and unhide various fields...
5
by: ali | last post by:
Hello every one i need you help regarding div hide and show. i am having a link like <a href="#" onClick="expandWin()">show/hide </a> <div id=showHide> </div> within div i have lots of...
2
nev
by: nev | last post by:
first of all, i'm not sure if this is the correct forum to post this question. please move if ever. the reason i placed it here is because you can create visual basic code in excel. i don't know...
1
by: Zwalker | last post by:
Help with Javascript turned off, new flashdrive version needed, to view YouTube even though Javascript is turned on and new flashdrive version installed.
11
by: Etienne1 | last post by:
Hello, I have a report with a subreport that has a subreport that as a subreport and so on. I have so far 6 levels and each of them is linked to his parent. What I'm trying to do is when a new...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.