
/* jquery.ahover.js */

/* 1  */ /* Copyright (c) 2008 Brian Beck (exogen@gmail.com)
/* 2  *|  * MIT (http://www.opensource.org/licenses/mit-license.php) licensed.
/* 3  *|  *
/* 4  *|  * Version: 1.0
/* 5  *|  *
/* 6  *|  * Requires:
/* 7  *|  *   jQuery 1.2+
/* 8  *|  *   Dimensions (http://plugins.jquery.com/project/dimensions)
/* 9  *|  */
/* 10 */ 
/* 11 */ (function($) {
/* 12 */     $.extend({
/* 13 */         ahover: {
/* 14 */             version: 1.0,
/* 15 */             defaults: {
/* 16 */                 toggleSpeed: 75,
/* 17 */                 toggleEffect: 'both',
/* 18 */                 hoverEffect: null,
/* 19 */                 moveSpeed: 250,
/* 20 */                 easing: 'swing',
/* 21 */                 className: 'ahover'
/* 22 */             },
/* 23 */             effects: {
/* 24 */                 'width': {width: 0},
/* 25 */                 'height': {height: 0},
/* 26 */                 'both': {width: 0, height: 0}
/* 27 */             }
/* 28 */         }
/* 29 */     });
/* 30 */     
/* 31 */     $.fn.extend({
/* 32 */         ahover: function(options) {
/* 33 */             var options = $.extend({}, $.ahover.defaults, options);
/* 34 */             var effect = (
/* 35 */                 (typeof options.toggleEffect == 'string') ?
/* 36 */                 $.ahover.effects[options.toggleEffect] : options.toggleEffect
/* 37 */             );
/* 38 */             var parent = this.offsetParent();
/* 39 */             return this.hover(
/* 40 */                 function(e) {
/* 41 */                     var over = $(this);
/* 42 */                     var overSize = {
/* 43 */                         width: over.outerWidth(),
/* 44 */                         height: over.outerHeight()
/* 45 */                     };
/* 46 */                     var overOffset = over.offset();
/* 47 */                     var parentOffset = parent.offset();
/* 48 */ 
/* 49 */                     var under = $('div.' + options.className, parent).stop();
/* 50 */                     var created = (under.length == 0);

/* jquery.ahover.js */

/* 51 */                     if (created) {
/* 52 */                         under = $('<div>&nbsp;</div>')
/* 53 */                             .addClass(options.className)
/* 54 */                             .appendTo(parent).css(overSize);
/* 55 */                     }
/* 56 */                     
/* 57 */                     var underOffset = {
/* 58 */                         left: overOffset.left - parentOffset.left -
/* 59 */                             (under.outerWidth() - under.width()) / 2,
/* 60 */                         top: overOffset.top - parentOffset.top -
/* 61 */                             (under.outerHeight() - under.height()) / 2
/* 62 */                     }
/* 63 */ 
/* 64 */                     if (created) {
/* 65 */                         under.css(underOffset).css(effect).animate(overSize, {
/* 66 */                             queue: false,
/* 67 */                             duration: options.toggleSpeed,
/* 68 */                             easing: options.easing
/* 69 */                         });
/* 70 */                     }
/* 71 */                     else {
/* 72 */                         var underCSS = $.extend({}, overSize, underOffset);
/* 73 */                         under.animate(underCSS, {
/* 74 */                             queue: false,
/* 75 */                             duration: options.moveSpeed,
/* 76 */                             easing: options.easing
/* 77 */                         });
/* 78 */                     }
/* 79 */                     if ($.isFunction(options.hoverEffect)) {
/* 80 */                         under.queue(options.hoverEffect);
/* 81 */                     }
/* 82 */                 },
/* 83 */                 function(e) {
/* 84 */                     $('div.' + options.className, parent).animate(effect, {
/* 85 */                         queue: false,
/* 86 */                         duration: options.toggleSpeed,
/* 87 */                         easing: options.easing,
/* 88 */                         complete: function() { $(this).remove(); }
/* 89 */                     });
/* 90 */                 }
/* 91 */             );
/* 92 */         }
/* 93 */     });
/* 94 */ })(jQuery);
;
/* jquery.bigtarget.1.0.1.js */

/* 1  */ // bigTarget.js - A jQuery Plugin
/* 2  */ // Version 1.0.1
/* 3  */ // Written by Leevi Graham - Technical Director - Newism Web Design & Development
/* 4  */ // http://newism.com.au
/* 5  */ // Notes: Tooltip code from fitted.js - http://www.trovster.com/lab/plugins/fitted/
/* 6  */ 
/* 7  */ // create closure
/* 8  */ (function($) {
/* 9  */ 	// plugin definition
/* 10 */ 	$.fn.bigTarget = function(options) {
/* 11 */ 		debug(this);
/* 12 */ 		// build main options before element iteration
/* 13 */ 		var opts = $.extend({}, $.fn.bigTarget.defaults, options);
/* 14 */ 		// iterate and reformat each matched element
/* 15 */ 		return this.each(function() {
/* 16 */ 			// set the anchor attributes
/* 17 */ 			var $a = $(this);
/* 18 */ 			var href = $a.attr('href');
/* 19 */ 			var title = $a.attr('title');
/* 20 */ 			// build element specific options
/* 21 */ 			var o = $.meta ? $.extend({}, opts, $a.data()) : opts;
/* 22 */ 			// update element styles
/* 23 */ 			$a.parents(o.clickZone)
/* 24 */ 				.hover(function() {
/* 25 */ 					$h = $(this);
/* 26 */ 					$h.addClass(o.hoverClass);
/* 27 */ 					if(typeof o.title != 'undefined' && o.title === true && title != '') {
/* 28 */ 						$h.attr('title',title);
/* 29 */ 					}
/* 30 */ 				}, function() {
/* 31 */ 					
/* 32 */ 					$h.removeClass(o.hoverClass);
/* 33 */ 					if(typeof o.title != 'undefined' && o.title === true && title != '') {
/* 34 */ 						$h.removeAttr('title');
/* 35 */ 					}
/* 36 */ 				})
/* 37 */ 				// click
/* 38 */ 				.click(function() {
/* 39 */ 					if(getSelectedText() == "")
/* 40 */ 					{
/* 41 */ 						if(($a.is('[rel*=external]'))||($a.is('[target*=_blank]'))){ 
/* 42 */ 							window.open(href);
/* 43 */ 							return false;
/* 44 */ 						}
/* 45 */ 						else {
/* 46 */ 							//$a.click(); $a.trigger('click');
/* 47 */ 							window.location = href;
/* 48 */ 						}
/* 49 */ 					}
/* 50 */ 				});

/* jquery.bigtarget.1.0.1.js */

/* 51 */ 		});
/* 52 */ 	};
/* 53 */ 	// private function for debugging
/* 54 */ 	function debug($obj) {
/* 55 */ 		if (window.console && window.console.log)
/* 56 */ 		window.console.log('bigTarget selection count: ' + $obj.size());
/* 57 */ 	};
/* 58 */ 	// get selected text
/* 59 */ 	function getSelectedText(){
/* 60 */ 		if(window.getSelection){
/* 61 */ 			return window.getSelection().toString();
/* 62 */ 		}
/* 63 */ 		else if(document.getSelection){
/* 64 */ 			return document.getSelection();
/* 65 */ 		}
/* 66 */ 		else if(document.selection){
/* 67 */ 			return document.selection.createRange().text;
/* 68 */ 		}
/* 69 */ 	};
/* 70 */ 	// plugin defaults
/* 71 */ 	$.fn.bigTarget.defaults = {
/* 72 */ 		hoverClass	: 'hover',
/* 73 */ 		clickZone	: 'div:eq(0)',
/* 74 */ 		title		: true
/* 75 */ 	};
/* 76 */ // end of closure
/* 77 */ })(jQuery);
/* 78 */ 
/* 79 */ $(document).ready(function(){
/* 80 */     $("div.bigTarget h3 a").bigTarget();
/* 81 */     $("div.bigTarget a.posolink").bigTarget();
/* 82 */     $("div.bigTarget a.horoskop").bigTarget();
/* 83 */     $("div.bigTarget a.recept").bigTarget();
/* 84 */     $("div.bigTarget a.osmlink").bigTarget();
/* 85 */ });
;
/* jquery.easing.1.3.js */

/* 1   */ /*
/* 2   *|  * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
/* 3   *|  *
/* 4   *|  * Uses the built in easing capabilities added In jQuery 1.1
/* 5   *|  * to offer multiple easing options
/* 6   *|  *
/* 7   *|  * TERMS OF USE - jQuery Easing
/* 8   *|  * 
/* 9   *|  * Open source under the BSD License. 
/* 10  *|  * 
/* 11  *|  * Copyright © 2008 George McGinley Smith
/* 12  *|  * All rights reserved.
/* 13  *|  * 
/* 14  *|  * Redistribution and use in source and binary forms, with or without modification, 
/* 15  *|  * are permitted provided that the following conditions are met:
/* 16  *|  * 
/* 17  *|  * Redistributions of source code must retain the above copyright notice, this list of 
/* 18  *|  * conditions and the following disclaimer.
/* 19  *|  * Redistributions in binary form must reproduce the above copyright notice, this list 
/* 20  *|  * of conditions and the following disclaimer in the documentation and/or other materials 
/* 21  *|  * provided with the distribution.
/* 22  *|  * 
/* 23  *|  * Neither the name of the author nor the names of contributors may be used to endorse 
/* 24  *|  * or promote products derived from this software without specific prior written permission.
/* 25  *|  * 
/* 26  *|  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
/* 27  *|  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
/* 28  *|  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
/* 29  *|  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
/* 30  *|  *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
/* 31  *|  *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
/* 32  *|  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
/* 33  *|  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
/* 34  *|  * OF THE POSSIBILITY OF SUCH DAMAGE. 
/* 35  *|  *
/* 36  *| */
/* 37  */ 
/* 38  */ // t: current time, b: begInnIng value, c: change In value, d: duration
/* 39  */ jQuery.easing['jswing'] = jQuery.easing['swing'];
/* 40  */ 
/* 41  */ jQuery.extend( jQuery.easing,
/* 42  */ {
/* 43  */ 	def: 'easeOutQuad',
/* 44  */ 	swing: function (x, t, b, c, d) {
/* 45  */ 		//alert(jQuery.easing.default);
/* 46  */ 		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
/* 47  */ 	},
/* 48  */ 	easeInQuad: function (x, t, b, c, d) {
/* 49  */ 		return c*(t/=d)*t + b;
/* 50  */ 	},

/* jquery.easing.1.3.js */

/* 51  */ 	easeOutQuad: function (x, t, b, c, d) {
/* 52  */ 		return -c *(t/=d)*(t-2) + b;
/* 53  */ 	},
/* 54  */ 	easeInOutQuad: function (x, t, b, c, d) {
/* 55  */ 		if ((t/=d/2) < 1) return c/2*t*t + b;
/* 56  */ 		return -c/2 * ((--t)*(t-2) - 1) + b;
/* 57  */ 	},
/* 58  */ 	easeInCubic: function (x, t, b, c, d) {
/* 59  */ 		return c*(t/=d)*t*t + b;
/* 60  */ 	},
/* 61  */ 	easeOutCubic: function (x, t, b, c, d) {
/* 62  */ 		return c*((t=t/d-1)*t*t + 1) + b;
/* 63  */ 	},
/* 64  */ 	easeInOutCubic: function (x, t, b, c, d) {
/* 65  */ 		if ((t/=d/2) < 1) return c/2*t*t*t + b;
/* 66  */ 		return c/2*((t-=2)*t*t + 2) + b;
/* 67  */ 	},
/* 68  */ 	easeInQuart: function (x, t, b, c, d) {
/* 69  */ 		return c*(t/=d)*t*t*t + b;
/* 70  */ 	},
/* 71  */ 	easeOutQuart: function (x, t, b, c, d) {
/* 72  */ 		return -c * ((t=t/d-1)*t*t*t - 1) + b;
/* 73  */ 	},
/* 74  */ 	easeInOutQuart: function (x, t, b, c, d) {
/* 75  */ 		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
/* 76  */ 		return -c/2 * ((t-=2)*t*t*t - 2) + b;
/* 77  */ 	},
/* 78  */ 	easeInQuint: function (x, t, b, c, d) {
/* 79  */ 		return c*(t/=d)*t*t*t*t + b;
/* 80  */ 	},
/* 81  */ 	easeOutQuint: function (x, t, b, c, d) {
/* 82  */ 		return c*((t=t/d-1)*t*t*t*t + 1) + b;
/* 83  */ 	},
/* 84  */ 	easeInOutQuint: function (x, t, b, c, d) {
/* 85  */ 		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
/* 86  */ 		return c/2*((t-=2)*t*t*t*t + 2) + b;
/* 87  */ 	},
/* 88  */ 	easeInSine: function (x, t, b, c, d) {
/* 89  */ 		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
/* 90  */ 	},
/* 91  */ 	easeOutSine: function (x, t, b, c, d) {
/* 92  */ 		return c * Math.sin(t/d * (Math.PI/2)) + b;
/* 93  */ 	},
/* 94  */ 	easeInOutSine: function (x, t, b, c, d) {
/* 95  */ 		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
/* 96  */ 	},
/* 97  */ 	easeInExpo: function (x, t, b, c, d) {
/* 98  */ 		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
/* 99  */ 	},
/* 100 */ 	easeOutExpo: function (x, t, b, c, d) {

/* jquery.easing.1.3.js */

/* 101 */ 		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
/* 102 */ 	},
/* 103 */ 	easeInOutExpo: function (x, t, b, c, d) {
/* 104 */ 		if (t==0) return b;
/* 105 */ 		if (t==d) return b+c;
/* 106 */ 		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
/* 107 */ 		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
/* 108 */ 	},
/* 109 */ 	easeInCirc: function (x, t, b, c, d) {
/* 110 */ 		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
/* 111 */ 	},
/* 112 */ 	easeOutCirc: function (x, t, b, c, d) {
/* 113 */ 		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
/* 114 */ 	},
/* 115 */ 	easeInOutCirc: function (x, t, b, c, d) {
/* 116 */ 		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
/* 117 */ 		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
/* 118 */ 	},
/* 119 */ 	easeInElastic: function (x, t, b, c, d) {
/* 120 */ 		var s=1.70158;var p=0;var a=c;
/* 121 */ 		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
/* 122 */ 		if (a < Math.abs(c)) { a=c; var s=p/4; }
/* 123 */ 		else var s = p/(2*Math.PI) * Math.asin (c/a);
/* 124 */ 		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
/* 125 */ 	},
/* 126 */ 	easeOutElastic: function (x, t, b, c, d) {
/* 127 */ 		var s=1.70158;var p=0;var a=c;
/* 128 */ 		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
/* 129 */ 		if (a < Math.abs(c)) { a=c; var s=p/4; }
/* 130 */ 		else var s = p/(2*Math.PI) * Math.asin (c/a);
/* 131 */ 		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
/* 132 */ 	},
/* 133 */ 	easeInOutElastic: function (x, t, b, c, d) {
/* 134 */ 		var s=1.70158;var p=0;var a=c;
/* 135 */ 		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
/* 136 */ 		if (a < Math.abs(c)) { a=c; var s=p/4; }
/* 137 */ 		else var s = p/(2*Math.PI) * Math.asin (c/a);
/* 138 */ 		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
/* 139 */ 		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
/* 140 */ 	},
/* 141 */ 	easeInBack: function (x, t, b, c, d, s) {
/* 142 */ 		if (s == undefined) s = 1.70158;
/* 143 */ 		return c*(t/=d)*t*((s+1)*t - s) + b;
/* 144 */ 	},
/* 145 */ 	easeOutBack: function (x, t, b, c, d, s) {
/* 146 */ 		if (s == undefined) s = 1.70158;
/* 147 */ 		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
/* 148 */ 	},
/* 149 */ 	easeInOutBack: function (x, t, b, c, d, s) {
/* 150 */ 		if (s == undefined) s = 1.70158; 

/* jquery.easing.1.3.js */

/* 151 */ 		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
/* 152 */ 		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
/* 153 */ 	},
/* 154 */ 	easeInBounce: function (x, t, b, c, d) {
/* 155 */ 		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
/* 156 */ 	},
/* 157 */ 	easeOutBounce: function (x, t, b, c, d) {
/* 158 */ 		if ((t/=d) < (1/2.75)) {
/* 159 */ 			return c*(7.5625*t*t) + b;
/* 160 */ 		} else if (t < (2/2.75)) {
/* 161 */ 			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
/* 162 */ 		} else if (t < (2.5/2.75)) {
/* 163 */ 			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
/* 164 */ 		} else {
/* 165 */ 			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
/* 166 */ 		}
/* 167 */ 	},
/* 168 */ 	easeInOutBounce: function (x, t, b, c, d) {
/* 169 */ 		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
/* 170 */ 		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
/* 171 */ 	}
/* 172 */ });
/* 173 */ 
/* 174 */ /*
/* 175 *|  *
/* 176 *|  * TERMS OF USE - EASING EQUATIONS
/* 177 *|  * 
/* 178 *|  * Open source under the BSD License. 
/* 179 *|  * 
/* 180 *|  * Copyright © 2001 Robert Penner
/* 181 *|  * All rights reserved.
/* 182 *|  * 
/* 183 *|  * Redistribution and use in source and binary forms, with or without modification, 
/* 184 *|  * are permitted provided that the following conditions are met:
/* 185 *|  * 
/* 186 *|  * Redistributions of source code must retain the above copyright notice, this list of 
/* 187 *|  * conditions and the following disclaimer.
/* 188 *|  * Redistributions in binary form must reproduce the above copyright notice, this list 
/* 189 *|  * of conditions and the following disclaimer in the documentation and/or other materials 
/* 190 *|  * provided with the distribution.
/* 191 *|  * 
/* 192 *|  * Neither the name of the author nor the names of contributors may be used to endorse 
/* 193 *|  * or promote products derived from this software without specific prior written permission.
/* 194 *|  * 
/* 195 *|  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
/* 196 *|  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
/* 197 *|  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
/* 198 *|  *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
/* 199 *|  *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
/* 200 *|  *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 

/* jquery.easing.1.3.js */

/* 201 *|  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
/* 202 *|  *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
/* 203 *|  * OF THE POSSIBILITY OF SUCH DAMAGE. 
/* 204 *|  *
/* 205 *|  */
;
/* jquery-easing-compatibility.1.2.pack.js */

/* 1  */ /*
/* 2  *|  * jQuery Easing Compatibility v1 - http://gsgd.co.uk/sandbox/jquery.easing.php
/* 3  *|  *
/* 4  *|  * Adds compatibility for applications that use the pre 1.2 easing names
/* 5  *|  *
/* 6  *|  * Copyright (c) 2007 George Smith
/* 7  *|  * Licensed under the MIT License:
/* 8  *|  *   http://www.opensource.org/licenses/mit-license.php
/* 9  *|  */
/* 10 */ eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('0.C(0.1,{7:2(x,t,b,c,d){3 0.1.D(x,t,b,c,d)},5:2(x,t,b,c,d){3 0.1.6(x,t,b,c,d)},h:2(x,t,b,c,d){3 0.1.B(x,t,b,c,d)},A:2(x,t,b,c,d){3 0.1.m(x,t,b,c,d)},y:2(x,t,b,c,d){3 0.1.w(x,t,b,c,d)},v:2(x,t,b,c,d){3 0.1.u(x,t,b,c,d)},s:2(x,t,b,c,d){3 0.1.r(x,t,b,c,d)},q:2(x,t,b,c,d){3 0.1.p(x,t,b,c,d)},o:2(x,t,b,c,d){3 0.1.n(x,t,b,c,d)},8:2(x,t,b,c,d){3 0.1.l(x,t,b,c,d)},g:2(x,t,b,c,d){3 0.1.j(x,t,b,c,d)},i:2(x,t,b,c,d){3 0.1.k(x,t,b,c,d)},z:2(x,t,b,c,d){3 0.1.f(x,t,b,c,d)},e:2(x,t,b,c,d){3 0.1.a(x,t,b,c,d)},9:2(x,t,b,c,d){3 0.1.4(x,t,b,c,d)}});',40,40,'jQuery|easing|function|return|easeInOutBack|easeOut|easeOutQuad|easeIn|elasin|backinout|easeOutBack||||backout|easeInBack|elasout|easeInOut|elasinout|easeOutElastic|easeInOutElastic|easeInElastic|easeInExpo|easeInOutBounce|bounceinout|easeOutBounce|bounceout|easeInBounce|bouncein||easeInOutExpo|expoinout|easeOutExpo||expoout|backin|expoin|easeInOutQuad|extend|easeInQuad'.split('|'),0,{}))
;
/* jquery.timers-1.1.2.js */

/* 1   */ /**
/* 2   *|  * jQuery.timers - Timer abstractions for jQuery
/* 3   *|  * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
/* 4   *|  * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
/* 5   *|  * Date: 2009/02/08
/* 6   *|  *
/* 7   *|  * @author Blair Mitchelmore
/* 8   *|  * @version 1.1.2
/* 9   *|  *
/* 10  *|  **/
/* 11  */ 
/* 12  */ jQuery.fn.extend({
/* 13  */ 	everyTime: function(interval, label, fn, times, belay) {
/* 14  */ 		return this.each(function() {
/* 15  */ 			jQuery.timer.add(this, interval, label, fn, times, belay);
/* 16  */ 		});
/* 17  */ 	},
/* 18  */ 	oneTime: function(interval, label, fn) {
/* 19  */ 		return this.each(function() {
/* 20  */ 			jQuery.timer.add(this, interval, label, fn, 1);
/* 21  */ 		});
/* 22  */ 	},
/* 23  */ 	stopTime: function(label, fn) {
/* 24  */ 		return this.each(function() {
/* 25  */ 			jQuery.timer.remove(this, label, fn);
/* 26  */ 		});
/* 27  */ 	}
/* 28  */ });
/* 29  */ 
/* 30  */ jQuery.event.special
/* 31  */ 
/* 32  */ jQuery.extend({
/* 33  */ 	timer: {
/* 34  */ 		global: [],
/* 35  */ 		guid: 1,
/* 36  */ 		dataKey: "jQuery.timer",
/* 37  */ 		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
/* 38  */ 		powers: {
/* 39  */ 			// Yeah this is major overkill...
/* 40  */ 			'ms': 1,
/* 41  */ 			'cs': 10,
/* 42  */ 			'ds': 100,
/* 43  */ 			's': 1000,
/* 44  */ 			'das': 10000,
/* 45  */ 			'hs': 100000,
/* 46  */ 			'ks': 1000000
/* 47  */ 		},
/* 48  */ 		timeParse: function(value) {
/* 49  */ 			if (value == undefined || value == null)
/* 50  */ 				return null;

/* jquery.timers-1.1.2.js */

/* 51  */ 			var result = this.regex.exec(jQuery.trim(value.toString()));
/* 52  */ 			if (result[2]) {
/* 53  */ 				var num = parseFloat(result[1]);
/* 54  */ 				var mult = this.powers[result[2]] || 1;
/* 55  */ 				return num * mult;
/* 56  */ 			} else {
/* 57  */ 				return value;
/* 58  */ 			}
/* 59  */ 		},
/* 60  */ 		add: function(element, interval, label, fn, times, belay) {
/* 61  */ 			var counter = 0;
/* 62  */ 			
/* 63  */ 			if (jQuery.isFunction(label)) {
/* 64  */ 				if (!times) 
/* 65  */ 					times = fn;
/* 66  */ 				fn = label;
/* 67  */ 				label = interval;
/* 68  */ 			}
/* 69  */ 			
/* 70  */ 			interval = jQuery.timer.timeParse(interval);
/* 71  */ 
/* 72  */ 			if (typeof interval != 'number' || isNaN(interval) || interval <= 0)
/* 73  */ 				return;
/* 74  */ 
/* 75  */ 			if (times && times.constructor != Number) {
/* 76  */ 				belay = !!times;
/* 77  */ 				times = 0;
/* 78  */ 			}
/* 79  */ 			
/* 80  */ 			times = times || 0;
/* 81  */ 			belay = belay || false;
/* 82  */ 			
/* 83  */ 			var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
/* 84  */ 			
/* 85  */ 			if (!timers[label])
/* 86  */ 				timers[label] = {};
/* 87  */ 			
/* 88  */ 			fn.timerID = fn.timerID || this.guid++;
/* 89  */ 			
/* 90  */ 			var handler = function() {
/* 91  */ 				if (belay && this.inProgress) 
/* 92  */ 					return;
/* 93  */ 				this.inProgress = true;
/* 94  */ 				if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
/* 95  */ 					jQuery.timer.remove(element, label, fn);
/* 96  */ 				this.inProgress = false;
/* 97  */ 			};
/* 98  */ 			
/* 99  */ 			handler.timerID = fn.timerID;
/* 100 */ 			

/* jquery.timers-1.1.2.js */

/* 101 */ 			if (!timers[label][fn.timerID])
/* 102 */ 				timers[label][fn.timerID] = window.setInterval(handler,interval);
/* 103 */ 			
/* 104 */ 			this.global.push( element );
/* 105 */ 			
/* 106 */ 		},
/* 107 */ 		remove: function(element, label, fn) {
/* 108 */ 			var timers = jQuery.data(element, this.dataKey), ret;
/* 109 */ 			
/* 110 */ 			if ( timers ) {
/* 111 */ 				
/* 112 */ 				if (!label) {
/* 113 */ 					for ( label in timers )
/* 114 */ 						this.remove(element, label, fn);
/* 115 */ 				} else if ( timers[label] ) {
/* 116 */ 					if ( fn ) {
/* 117 */ 						if ( fn.timerID ) {
/* 118 */ 							window.clearInterval(timers[label][fn.timerID]);
/* 119 */ 							delete timers[label][fn.timerID];
/* 120 */ 						}
/* 121 */ 					} else {
/* 122 */ 						for ( var fn in timers[label] ) {
/* 123 */ 							window.clearInterval(timers[label][fn]);
/* 124 */ 							delete timers[label][fn];
/* 125 */ 						}
/* 126 */ 					}
/* 127 */ 					
/* 128 */ 					for ( ret in timers[label] ) break;
/* 129 */ 					if ( !ret ) {
/* 130 */ 						ret = null;
/* 131 */ 						delete timers[label];
/* 132 */ 					}
/* 133 */ 				}
/* 134 */ 				
/* 135 */ 				for ( ret in timers ) break;
/* 136 */ 				if ( !ret ) 
/* 137 */ 					jQuery.removeData(element, this.dataKey);
/* 138 */ 			}
/* 139 */ 		}
/* 140 */ 	}
/* 141 */ });
/* 142 */ 
/* 143 */ jQuery(window).bind("unload", function() {
/* 144 */ 	jQuery.each(jQuery.timer.global, function(index, item) {
/* 145 */ 		jQuery.timer.remove(item);
/* 146 */ 	});
/* 147 */ });
