Wyoming Natural Resource Foundation
PUUTF-8_+http://www.wynaturalresourcefoundation.com/Ytext/html7_WebSubresources
O
Wyoming Natural Resource Foundation
Stop_2http://www.wynaturalresourcefoundation.com/top.htm!&*.2_WebResourceResponseO&/* SpryMenuBar.js - Revision: Spry Preview Release 1.4 */
// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
// * Neither the name of Adobe Systems Incorporated nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
/*******************************************************************************
SpryMenuBar.js
This file handles the JavaScript for Spry Menu Bar. You should have no need
to edit this file. Some highlights of the MenuBar object is that timers are
used to keep submenus from showing up until the user has hovered over the parent
menu item for some time, as well as a timer for when they leave a submenu to keep
showing that submenu until the timer fires.
*******************************************************************************/
var Spry;
if(!Spry)
{
Spry = {};
}
if(!Spry.Widget)
{
Spry.Widget = {};
}
// Constructor for Menu Bar
// element should be an ID of an unordered list (
tag)
// preloadImage1 and preloadImage2 are images for the rollover state of a menu
Spry.Widget.MenuBar = function(element, opts)
{
this.init(element, opts);
};
Spry.Widget.MenuBar.prototype.init = function(element, opts)
{
this.element = this.getElement(element);
// represents the current (sub)menu we are operating on
this.currMenu = null;
var isie = (typeof document.all != 'undefined' && typeof window.opera == 'undefined' && navigator.vendor != 'KDE');
if(typeof document.getElementById == 'undefined' || (navigator.vendor == 'Apple Computer, Inc.' && typeof window.XMLHttpRequest == 'undefined') || (isie && typeof document.uniqueID == 'undefined'))
{
// bail on older unsupported browsers
return;
}
// load hover images now
if(opts)
{
for(var k in opts)
{
var rollover = new Image;
rollover.src = opts[k];
}
}
if(this.element)
{
this.currMenu = this.element;
var items = this.element.getElementsByTagName('li');
for(var i=0; i 0)
{
layers[0].parentNode.removeChild(layers[0]);
}
};
// clearMenus for Menu Bar
// root is the top level unordered list (
tag)
Spry.Widget.MenuBar.prototype.clearMenus = function(root)
{
var menus = root.getElementsByTagName('ul');
for(var i=0; i 0 ? submenus[0] : null);
var hasSubMenu = false;
if(menu)
{
this.addClassName(link, "MenuBarItemSubmenu");
hasSubMenu = true;
}
if(!isie)
{
// define a simple function that comes standard in IE to determine
// if a node is within another node
listitem.contains = function(testNode)
{
// this refers to the list item
if(testNode == null)
{
return false;
}
if(testNode == this)
{
return true;
}
else
{
return this.contains(testNode.parentNode);
}
};
}
// need to save this for scope further down
var self = this;
this.addEventListener(listitem, 'mouseover', function(e)
{
if(self.bubbledTextEvent())
{
// ignore bubbled text events
return;
}
clearTimeout(closetime);
if(self.currMenu == listitem)
{
self.currMenu = null;
}
// show menu highlighting
self.addClassName(link, hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
if(menu && !self.hasClassName(menu, "MenuBarSubmenuVisible"))
{
opentime = window.setTimeout(function(){self.showSubmenu(menu);}, 250);
}
}, false);
this.addEventListener(listitem, 'mouseout', function(e)
{
if(self.bubbledTextEvent())
{
// ignore bubbled text events
return;
}
var related = (typeof e.relatedTarget != 'undefined' ? e.relatedTarget : e.toElement);
if(!listitem.contains(related))
{
clearTimeout(opentime);
self.currMenu = listitem;
// remove menu highlighting
self.removeClassName(link, hasSubMenu ? "MenuBarItemSubmenuHover" : "MenuBarItemHover");
if(menu)
{
closetime = window.setTimeout(function(){self.hideSubmenu(menu);}, 600);
}
}
}, false);
};
O#bplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Dhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBar.js./01X$classesZ$classname12UNSURLXNSObject#A7ߤ
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJ:L ZKeep-Alive]Accept-Ranges\Content-TypeVServer^Content-LengthTDateTEtagZConnection]Last-Modified_timeout=15, max=100Tnone_application/x-javascriptVApacheT9732_Sun, 02 Oct 2011 01:40:21 GMT_"60bb7c-2604-477ba1af922c0"_Fri, 06 Nov 2009 20:58:27 GMT./_``a2_NSMutableDictionary\NSDictionary&./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d RW`knt} "-;QVqx}
' g 5_Dhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBar.js_application/x-javascript O@charset "UTF-8";
/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/*******************************************************************************
LAYOUT INFORMATION: describes box model, positioning, z-order
*******************************************************************************/
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
cursor: default;
width: inherit;
padding-right: 0px;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
z-index: 1000;
color: #FFFFFF;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
margin: 0;
padding: 0;
list-style-type: none;
font-size: small;
position: relative;
text-align: left;
cursor: pointer;
width: 8em;
float: left;
color: #FFFFFF;
background-color: #000000;
border-color: #000000;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
z-index: 1020;
cursor: default;
width: 8.2em;
position: absolute;
left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
width: 8.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
position: absolute;
margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
left: auto;
top: 0;
}
/*******************************************************************************
DESIGN INFORMATION: describes color scheme, borders, fonts
*******************************************************************************/
/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
display: block;
cursor: pointer;
background-color: #000000;
padding: 0.5em 0.75em;
color: #FFFFFF;
text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
background-color: #000000;
color: #000000;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
background-color: #33C;
color: #FFF;
}
/*******************************************************************************
SUBMENU INDICATION: styles if there is a submenu under a given menu item
*******************************************************************************/
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
background-image: url(SpryMenuBarDown.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
background-image: url(SpryMenuBarRight.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
background-image: url(SpryMenuBarDownHover.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
background-image: url(SpryMenuBarRightHover.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/*******************************************************************************
BROWSER HACKS: the hacks below should not be changed unless you are an expert
*******************************************************************************/
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
position: absolute;
z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
ul.MenuBarHorizontal li.MenuBarItemIE
{
display: inline;
f\loat: left;
background: #FFF;
}
}
Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\M]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Ohttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarHorizontal.css./01X$classesZ$classname12UNSURLXNSObject#A7 O{
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=100TnoneVApacheXtext/css_Sun, 02 Oct 2011 01:40:21 GMTT5575_"60bb81-15c7-477ba1b086500"_Fri, 06 Nov 2009 20:58:28 GMT./_``a2_NSMutableDictionary\NSDictionary./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d
^clwz).9G]bir
! g /_Ohttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarHorizontal.cssXtext/css"#$%O7GIF89a 333 ! , )j
( ;Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\M]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Ihttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarDown.gif./01X$classesZ$classname12UNSURLXNSObject#A8
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=100TnoneVApacheYimage/gif_Sun, 02 Oct 2011 02:14:24 GMTR55_"60bb7d-37-477ba27036940"_Fri, 06 Nov 2009 21:01:49 GMT./_``a2_NSMutableDictionary\NSDictionary7./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d
X]fqtz#(3AW\cm g %_Ihttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarDown.gifYimage/gif'()%O7GIF89a ! , )j
( ;Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\M]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Nhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarDownHover.gif./01X$classesZ$classname12UNSURLXNSObject#A73r
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=97TnoneVApacheYimage/gif_Sun, 02 Oct 2011 01:38:58 GMTR55_"60bb7f-37-477ba1af922c0"_Fri, 06 Nov 2009 20:58:27 GMT./_``a2_NSMutableDictionary\NSDictionary7./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d
]bkvy (-8F[`gq g )_Nhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarDownHover.gif+,-%O7GIF89a ! , &i쫔( ;Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Ohttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarRightHover.gif./01X$classesZ$classname12UNSURLXNSObject#A7
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJ:L ZKeep-Alive]Accept-Ranges\Content-TypeVServer^Content-LengthTDateTEtagZConnection]Last-Modified_timeout=15, max=96TnoneYimage/gifVApacheR55_Sat, 01 Oct 2011 21:05:00 GMT_"60bb87-37-477ba1b086500"_Fri, 06 Nov 2009 20:58:28 GMT./_``a2_NSMutableDictionary\NSDictionary7./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d ]bkvy
#(-8F[`jqt g )_Ohttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarRightHover.gif/01 O_@charset "UTF-8";
/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/*******************************************************************************
LAYOUT INFORMATION: describes box model, positioning, z-order
*******************************************************************************/
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
cursor: default;
width: 8em;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
margin: 0;
padding: 0;
list-style-type: none;
font-size: 100%;
position: relative;
text-align: left;
cursor: pointer;
width: 8em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
margin: -5% 0 0 95%;
padding: 0;
list-style-type: none;
font-size: 100%;
position: absolute;
z-index: 1020;
cursor: default;
width: 8.2em;
left: -1000em;
top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
width: 8.2em;
}
/*******************************************************************************
DESIGN INFORMATION: describes color scheme, borders, fonts
*******************************************************************************/
/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
border: 1px solid #CCC;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
display: block;
cursor: pointer;
background-color: #EEE;
padding: 0.5em 0.75em;
color: #333;
text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
background-color: #33C;
color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
background-color: #33C;
color: #FFF;
}
/*******************************************************************************
SUBMENU INDICATION: styles if there is a submenu under a given menu item
*******************************************************************************/
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
background-image: url(SpryMenuBarRight.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
background-image: url(SpryMenuBarRightHover.gif);
background-repeat: no-repeat;
background-position: 95% 50%;
}
/*******************************************************************************
BROWSER HACKS: the hacks below should not be changed unless you are an expert
*******************************************************************************/
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
position: absolute;
z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
ul.MenuBarVertical li.MenuBarItemIE
{
display: inline;
f\loat: left;
background: #FFF;
}
}
Obplist00
X$versionT$topY$archiverX$objects _WebResourceResponse_NSKeyedArchiver&,-345MNOPQRSTUVWXYZ[\]^bcU$null
!"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1
'()$+WNS.base[NS.relative _Mhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarVertical.css./01X$classesZ$classname12UNSURLXNSObject#A7
6789CWNS.keysZNS.objects:;<=>?@AB
DEFGHIJ:L ZKeep-Alive]Accept-Ranges\Content-TypeVServer^Content-LengthTDateTEtagZConnection]Last-Modified_timeout=15, max=100TnoneXtext/cssVApacheT4447_Sun, 02 Oct 2011 01:40:21 GMT_"60bb88-115f-477ba1b086500"_Fri, 06 Nov 2009 20:58:28 GMT./_``a2_NSMutableDictionary\NSDictionary_./deef2_NSHTTPURLResponse]NSURLResponse ) 2 7 : P R d [`itw}!&+6DZ_hot
g ,_Mhttp://www.wynaturalresourcefoundation.com/SpryAssets/SpryMenuBarVertical.css3456O *] JFIF ` `
SExif MM * ( 1 2 Q Q Q Q i ' 'Adobe Photoshop CS4 Windows 2009:11:11 14:20:29 ;c
3K 3S KK ;3 C[ C;" CS 7q.S 33 4f2C iJ 3++$ CC-+ KZ KR dP J<)D SB lE
ZC :; 3; ;J JD SJ ;C C3 *J CK-L-3 dC "# fN-; 9-, V\ Q= 5i Z<&".A )9
&B
!- 6m 1] )4 Ae Lc M`%%> aJ 9h YU UX!1 ]H eI Df ]M 8n!5 XQ) 1Y J6 A`
#8 9^ 5] =V =] UT ZM UP 6b 8U PU aM QZ XI
! Q] gL
%9 I` U_ =Y 1&%) 9Y Hf PP &( =i E` c? ) &1 5X dN 2` 8O ]R >O%,
$1
$5'5/W0 Q7 Dh Bh)-
"( 8k @j
3d \T ;l XZ XW `R1 Hc dK Je @/'9 \V 4$ O_