1<HTML>
2<HEAD>
3<%11%>
4<TITLE>NETGEAR Wireless Help</TITLE>
5<link rel="stylesheet" type="text/css" media="all" href="css/jScrollPane.css" />
6<link rel="stylesheet" href="css/help.css">
7<link rel="stylesheet" href="css/scrollbar.css">
8<script src="jquery.js"></script>
9<script src="script/jquery.mousewheel.js"></script>
10<script type="text/javascript" src="script/jScrollPane.js"></script>
11<script src="script/script.js"></script>
12<script type="text/javascript" id="sourcecode">
13$(function()
14    {
15        $('#content').each(
16            function()
17            {
18                $(this).jScrollPane(
19                {
20                    showArrows: $(this).is('.arrow')
21                }
22            );
23            var api = $(this).data('jsp');
24            var throttleTimeout;
25            $(window).bind(
26                'resize',
27            function()
28            {
29                if ($.browser.msie) {
30                    // IE fires multiple resize events while you are dragging the browser window which
31                    // causes it to crash if you try to update the scrollpane on every one. So we need
32                    // to throttle it to fire a maximum of once every 50 milliseconds...
33                    if (!throttleTimeout) {
34                        throttleTimeout = setTimeout(
35                            function()
36                            {
37                                api.reinitialise();
38                                throttleTimeout = null;
39                            },
40                            50
41                        );
42                    }
43                } else {
44                    api.reinitialise();
45                }
46            }
47            );
48            }
49        )
50    });
51
52</script>
53</HEAD>
54
55<%1596%><%1597%><%1598%>
56
57</HTML>
58