(function($) {
		$.ui = $.ui || {};
		if ($.ui.version) {
		return;
		}
		$.extend($.ui, {
		version: "1.8.2",
		plugin: {
		add: function(module, option, set) {
		var proto = $.ui[module].prototype;
		for(var i in set) {
		proto.plugins[i] = proto.plugins[i] || [];
		proto.plugins[i].push([option, set[i]]);
		}
		},
		call: function(instance, name, args) {
		var set = instance.plugins[name];
		if(!set || !instance.element[0].parentNode) { return; }
		for (var i = 0; i < set.length; i++) {
		if (instance.options[set[i][0]]) {
		set[i][1].apply(instance.element, args);
		}
		}
		}
		},
		contains: function(a, b) {
		return document.compareDocumentPosition
		? a.compareDocumentPosition(b) & 16
		: a !== b && a.contains(b);
		},
		hasScroll: function(el, a) {
		if ($(el).css('overflow') == 'hidden') { return false; }
		var scroll = (a && a == 'left') ? 'scrollLeft' : 'scrollTop',
		has = false;
		if (el[scroll] > 0) { return true; }
		el[scroll] = 1;
		has = (el[scroll] > 0);
		el[scroll] = 0;
		return has;
		},
		isOverAxis: function(x, reference, size) {
		return (x > reference) && (x < (reference + size));
		},
		isOver: function(y, x, top, left, height, width) {
		return $.ui.isOverAxis(y, top, height) && $.ui.isOverAxis(x, left, width);
		},
		keyCode: {
		ALT: 18,
		BACKSPACE: 8,
		CAPS_LOCK: 20,
		COMMA: 188,
		COMMAND: 91,
		COMMAND_LEFT: 91, // COMMAND
		COMMAND_RIGHT: 93,
		CONTROL: 17,
		DELETE: 46,
		DOWN: 40,
		END: 35,
		ENTER: 13,
		ESCAPE: 27,
		HOME: 36,
		INSERT: 45,
		LEFT: 37,
		MENU: 93, // COMMAND_RIGHT
		NUMPAD_ADD: 107,
		NUMPAD_DECIMAL: 110,
		NUMPAD_DIVIDE: 111,
		NUMPAD_ENTER: 108,
		NUMPAD_MULTIPLY: 106,
		NUMPAD_SUBTRACT: 109,
		PAGE_DOWN: 34,
		PAGE_UP: 33,
		PERIOD: 190,
		RIGHT: 39,
		SHIFT: 16,
		SPACE: 32,
		TAB: 9,
		UP: 38,
		WINDOWS: 91 // COMMAND
		}
		});
		$.fn.extend({
		_focus: $.fn.focus,
		focus: function(delay, fn) {
		return typeof delay === 'number'
		? this.each(function() {
		var elem = this;
		setTimeout(function() {
		$(elem).focus();
		(fn && fn.call(elem));
		}, delay);
		})
		: this._focus.apply(this, arguments);
		},
		enableSelection: function() {
		return this
		.attr('unselectable', 'off')
		.css('MozUserSelect', '');
		},
		disableSelection: function() {
		return this
		.attr('unselectable', 'on')
		.css('MozUserSelect', 'none');
		},
		scrollParent: function() {
		var scrollParent;
		if(($.browser.msie && (/(static|relative)/).test(this.css('position'))) || (/absolute/).test(this.css('position'))) {
		scrollParent = this.parents().filter(function() {
		return (/(relative|absolute|fixed)/).test($.curCSS(this,'position',1)) && (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
		}).eq(0);
		} else {
		scrollParent = this.parents().filter(function() {
		return (/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));
		}).eq(0);
		}
		return (/fixed/).test(this.css('position')) || !scrollParent.length ? $(document) : scrollParent;
		},
		zIndex: function(zIndex) {
		if (zIndex !== undefined) {
		return this.css('zIndex', zIndex);
		}
		if (this.length) {
		var elem = $(this[0]), position, value;
		while (elem.length && elem[0] !== document) {
		position = elem.css('position');
		if (position == 'absolute' || position == 'relative' || position == 'fixed')
		{
		value = parseInt(elem.css('zIndex'));
		if (!isNaN(value) && value != 0) {
		return value;
		}
		}
		elem = elem.parent();
		}
		}
		return 0;
		}
		});
		$.extend($.expr[':'], {
		data: function(elem, i, match) {
		return !!$.data(elem, match[3]);
		},
		focusable: function(element) {
		var nodeName = element.nodeName.toLowerCase(),
		tabIndex = $.attr(element, 'tabindex');
		return (/input|select|textarea|button|object/.test(nodeName)
		? !element.disabled
		: 'a' == nodeName || 'area' == nodeName
		? element.href || !isNaN(tabIndex)
		: !isNaN(tabIndex))

		&& !$(element)['area' == nodeName ? 'parents' : 'closest'](':hidden').length;
		},
		tabbable: function(element) {
		var tabIndex = $.attr(element, 'tabindex');
		return (isNaN(tabIndex) || tabIndex >= 0) && $(element).is(':focusable');
		}
		});
		})(jQuery);
		(function( $ ) {
		var _remove = $.fn.remove;
		$.fn.remove = function( selector, keepData ) {
		return this.each(function() {
		if ( !keepData ) {
		if ( !selector || $.filter( selector, [ this ] ).length ) {
		$( "*", this ).add( this ).each(function() {
		$( this ).triggerHandler( "remove" );
		});
		}
		}
		return _remove.call( $(this), selector, keepData );
		});
		};
		$.widget = function( name, base, prototype ) {
		var namespace = name.split( "." )[ 0 ],
		fullName;
		name = name.split( "." )[ 1 ];
		fullName = namespace + "-" + name;
		if ( !prototype ) {
		prototype = base;
		base = $.Widget;
		}
		$.expr[ ":" ][ fullName ] = function( elem ) {
		return !!$.data( elem, name );
		};
		$[ namespace ] = $[ namespace ] || {};
		$[ namespace ][ name ] = function( options, element ) {
		if ( arguments.length ) {
		this._createWidget( options, element );
		}
		};
		var basePrototype = new base();
		basePrototype.options = $.extend( {}, basePrototype.options );
		$[ namespace ][ name ].prototype = $.extend( true, basePrototype, {
		namespace: namespace,
		widgetName: name,
		widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name,
		widgetBaseClass: fullName
		}, prototype );
		$.widget.bridge( name, $[ namespace ][ name ] );
		};
		$.widget.bridge = function( name, object ) {
		$.fn[ name ] = function( options ) {
		var isMethodCall = typeof options === "string",
		args = Array.prototype.slice.call( arguments, 1 ),
		returnValue = this;
		options = !isMethodCall && args.length ?
		$.extend.apply( null, [ true, options ].concat(args) ) :
		options;
		if ( isMethodCall && options.substring( 0, 1 ) === "_" ) {
		return returnValue;
		}
		if ( isMethodCall ) {
		this.each(function() {
		var instance = $.data( this, name ),
		methodValue = instance && $.isFunction( instance[options] ) ?
		instance[ options ].apply( instance, args ) :
		instance;
		if ( methodValue !== instance && methodValue !== undefined ) {
		returnValue = methodValue;
		return false;
		}
		});
		} else {
		this.each(function() {
		var instance = $.data( this, name );
		if ( instance ) {
		if ( options ) {
		instance.option( options );
		}
		instance._init();
		} else {
		$.data( this, name, new object( options, this ) );
		}
		});
		}
		return returnValue;
		};
		};
		$.Widget = function( options, element ) {
		if ( arguments.length ) {
		this._createWidget( options, element );
		}
		};
		$.Widget.prototype = {
		widgetName: "widget",
		widgetEventPrefix: "",
		options: {
		disabled: false
		},
		_createWidget: function( options, element ) {
		this.element = $( element ).data( this.widgetName, this );
		this.options = $.extend( true, {},
		this.options,
		$.metadata && $.metadata.get( element )[ this.widgetName ],
		options );
		var self = this;
		this.element.bind( "remove." + this.widgetName, function() {
		self.destroy();
		});
		this._create();
		this._init();
		},
		_create: function() {},
		_init: function() {},
		destroy: function() {
		this.element
		.unbind( "." + this.widgetName )
		.removeData( this.widgetName );
		this.widget()
		.unbind( "." + this.widgetName )
		.removeAttr( "aria-disabled" )
		.removeClass(
		this.widgetBaseClass + "-disabled " +
		"ui-state-disabled" );
		},
		widget: function() {
		return this.element;
		},
		option: function( key, value ) {
		var options = key,
		self = this;
		if ( arguments.length === 0 ) {
		return $.extend( {}, self.options );
		}
		if  (typeof key === "string" ) {
		if ( value === undefined ) {
		return this.options[ key ];
		}
		options = {};
		options[ key ] = value;
		}
		$.each( options, function( key, value ) {
		self._setOption( key, value );
		});
		return self;
		},
		_setOption: function( key, value ) {
		this.options[ key ] = value;
		if ( key === "disabled" ) {
		this.widget()
		[ value ? "addClass" : "removeClass"](
		this.widgetBaseClass + "-disabled" + " " +
		"ui-state-disabled" )
		.attr( "aria-disabled", value );
		}
		return this;
		},
		enable: function() {
		return this._setOption( "disabled", false );
		},
		disable: function() {
		return this._setOption( "disabled", true );
		},
		_trigger: function( type, event, data ) {
		var callback = this.options[ type ];
		event = $.Event( event );
		event.type = ( type === this.widgetEventPrefix ?
		type :
		this.widgetEventPrefix + type ).toLowerCase();
		data = data || {};
		if ( event.originalEvent ) {
		for ( var i = $.event.props.length, prop; i; ) {
		prop = $.event.props[ --i ];
		event[ prop ] = event.originalEvent[ prop ];
		}
		}
		this.element.trigger( event, data );
		return !( $.isFunction(callback) &&
		callback.call( this.element[0], event, data ) === false ||
		event.isDefaultPrevented() );
		}
		};
		})( jQuery );
		(function($) {
		$.widget("ui.accordion", {
		options: {
		active: 0,
		animated: 'slide',
		autoHeight: true,
		clearStyle: false,
		collapsible: false,
		event: "click",
		fillSpace: false,
		header: "> li > :first-child,> :not(li):even",
		icons: {
		header: "ui-icon-triangle-1-e",
		headerSelected: "ui-icon-triangle-1-s"
		},
		navigation: false,
		navigationFilter: function() {
		return this.href.toLowerCase() == location.href.toLowerCase();
		}
		},
		_create: function() {
		var o = this.options, self = this;
		this.running = 0;
		this.element.addClass("ui-accordion ui-widget ui-helper-reset");
		this.element.children("li").addClass("ui-accordion-li-fix");
		this.headers = this.element.find(o.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all")
		.bind("mouseenter.accordion", function(){ $(this).addClass('ui-state-hover'); })
		.bind("mouseleave.accordion", function(){ $(this).removeClass('ui-state-hover'); })
		.bind("focus.accordion", function(){ $(this).addClass('ui-state-focus'); })
		.bind("blur.accordion", function(){ $(this).removeClass('ui-state-focus'); });
		this.headers
		.next()
		.addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");
		if ( o.navigation ) {
		var current = this.element.find("a").filter(o.navigationFilter);
		if ( current.length ) {
		var header = current.closest(".ui-accordion-header");
		if ( header.length ) {
		this.active = header;
		} else {
		this.active = current.closest(".ui-accordion-content").prev();
		}
		}
		}
		this.active = this._findActive(this.active || o.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");
		this.active.next().addClass('ui-accordion-content-active');
		this._createIcons();
		this.resize();
		this.element.attr('role','tablist');
		this.headers
		.attr('role','tab')
		.bind('keydown', function(event) { return self._keydown(event); })
		.next()
		.attr('role','tabpanel');
		this.headers
		.not(this.active || "")
		.attr('aria-expanded','false')
		.attr("tabIndex", "-1")
		.next()
		.hide();
		if (!this.active.length) {
		this.headers.eq(0).attr('tabIndex','0');
		} else {
		this.active
		.attr('aria-expanded','true')
		.attr('tabIndex', '0');
		}
		if (!$.browser.safari)
		this.headers.find('a').attr('tabIndex','-1');
		if (o.event) {
		this.headers.bind((o.event) + ".accordion", function(event) {
		self._clickHandler.call(self, event, this);
		event.preventDefault();
		});
		}
		},
		_createIcons: function() {
		var o = this.options;
		if (o.icons) {
		$("<span/>").addClass("ui-icon " + o.icons.header).prependTo(this.headers);
		this.active.find(".ui-icon").toggleClass(o.icons.header).toggleClass(o.icons.headerSelected);
		this.element.addClass("ui-accordion-icons");
		}
		},
		_destroyIcons: function() {
		this.headers.children(".ui-icon").remove();
		this.element.removeClass("ui-accordion-icons");
		},
		destroy: function() {
		var o = this.options;
		this.element
		.removeClass("ui-accordion ui-widget ui-helper-reset")
		.removeAttr("role")
		.unbind('.accordion')
		.removeData('accordion');
		this.headers
		.unbind(".accordion")
		.removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top")
		.removeAttr("role").removeAttr("aria-expanded").removeAttr("tabIndex");
		this.headers.find("a").removeAttr("tabIndex");
		this._destroyIcons();
		var contents = this.headers.next().css("display", "").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");
		if (o.autoHeight || o.fillHeight) {
		contents.css("height", "");
		}
		return this;
		},
		_setOption: function(key, value) {
		$.Widget.prototype._setOption.apply(this, arguments);
		if (key == "active") {
		this.activate(value);
		}
		if (key == "icons") {
		this._destroyIcons();
		if (value) {
		this._createIcons();
		}
		}
		},
		_keydown: function(event) {
		var o = this.options, keyCode = $.ui.keyCode;
		if (o.disabled || event.altKey || event.ctrlKey)
		return;
		var length = this.headers.length;
		var currentIndex = this.headers.index(event.target);
		var toFocus = false;
		switch(event.keyCode) {
		case keyCode.RIGHT:
		case keyCode.DOWN:
		toFocus = this.headers[(currentIndex + 1) % length];
		break;
		case keyCode.LEFT:
		case keyCode.UP:
		toFocus = this.headers[(currentIndex - 1 + length) % length];
		break;
		case keyCode.SPACE:
		case keyCode.ENTER:
		this._clickHandler({ target: event.target }, event.target);
		event.preventDefault();
		}
		if (toFocus) {
		$(event.target).attr('tabIndex','-1');
		$(toFocus).attr('tabIndex','0');
		toFocus.focus();
		return false;
		}
		return true;
		},
		resize: function() {
		var o = this.options, maxHeight;
		if (o.fillSpace) {
		if($.browser.msie) { var defOverflow = this.element.parent().css('overflow'); this.element.parent().css('overflow', 'hidden'); }
		maxHeight = this.element.parent().height();
		if($.browser.msie) { this.element.parent().css('overflow', defOverflow); }
		this.headers.each(function() {
		maxHeight -= $(this).outerHeight(true);
		});
		this.headers.next().each(function() {
		$(this).height(Math.max(0, maxHeight - $(this).innerHeight() + $(this).height()));
		}).css('overflow', 'auto');
		} else if ( o.autoHeight ) {
		maxHeight = 0;
		this.headers.next().each(function() {
		maxHeight = Math.max(maxHeight, $(this).height());
		}).height(maxHeight);
		}
		return this;
		},
		activate: function(index) {
		this.options.active = index;
		var active = this._findActive(index)[0];
		this._clickHandler({ target: active }, active);
		return this;
		},
		_findActive: function(selector) {
		return selector
		? typeof selector == "number"
		? this.headers.filter(":eq(" + selector + ")")
		: this.headers.not(this.headers.not(selector))
		: selector === false
		? $([])
		: this.headers.filter(":eq(0)");
		},
		_clickHandler: function(event, target) {
		var o = this.options;
		if (o.disabled)
		return;
		if (!event.target) {
		if (!o.collapsible)
		return;
		this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all")
		.find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header);
		this.active.next().addClass('ui-accordion-content-active');
		var toHide = this.active.next(),
		data = {
		options: o,
		newHeader: $([]),
		oldHeader: o.active,
		newContent: $([]),
		oldContent: toHide
		},
		toShow = (this.active = $([]));
		this._toggle(toShow, toHide, data);
		return;
		}
		var clicked = $(event.currentTarget || target);
		var clickedIsActive = clicked[0] == this.active[0];
		o.active = o.collapsible && clickedIsActive ? false : $('.ui-accordion-header', this.element).index(clicked);
		if (this.running || (!o.collapsible && clickedIsActive)) {
		return;
		}
		this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all")
		.find(".ui-icon").removeClass(o.icons.headerSelected).addClass(o.icons.header);
		if (!clickedIsActive) {
		clicked.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top")
		.find(".ui-icon").removeClass(o.icons.header).addClass(o.icons.headerSelected);
		clicked.next().addClass('ui-accordion-content-active');
		}
		var toShow = clicked.next(),
		toHide = this.active.next(),
		data = {
		options: o,
		newHeader: clickedIsActive && o.collapsible ? $([]) : clicked,
		oldHeader: this.active,
		newContent: clickedIsActive && o.collapsible ? $([]) : toShow,
		oldContent: toHide
		},
		down = this.headers.index( this.active[0] ) > this.headers.index( clicked[0] );
		this.active = clickedIsActive ? $([]) : clicked;
		this._toggle(toShow, toHide, data, clickedIsActive, down);
		return;
		},
		_toggle: function(toShow, toHide, data, clickedIsActive, down) {
		var o = this.options, self = this;
		this.toShow = toShow;
		this.toHide = toHide;
		this.data = data;
		var complete = function() { if(!self) return; return self._completed.apply(self, arguments); };
		this._trigger("changestart", null, this.data);
		this.running = toHide.size() === 0 ? toShow.size() : toHide.size();
		if (o.animated) {
		var animOptions = {};
		if ( o.collapsible && clickedIsActive ) {
		animOptions = {
		toShow: $([]),
		toHide: toHide,
		complete: complete,
		down: down,
		autoHeight: o.autoHeight || o.fillSpace
		};
		} else {
		animOptions = {
		toShow: toShow,
		toHide: toHide,
		complete: complete,
		down: down,
		autoHeight: o.autoHeight || o.fillSpace
		};
		}
		if (!o.proxied) {
		o.proxied = o.animated;
		}
		if (!o.proxiedDuration) {
		o.proxiedDuration = o.duration;
		}
		o.animated = $.isFunction(o.proxied) ?
		o.proxied(animOptions) : o.proxied;
		o.duration = $.isFunction(o.proxiedDuration) ?
		o.proxiedDuration(animOptions) : o.proxiedDuration;
		var animations = $.ui.accordion.animations,
		duration = o.duration,
		easing = o.animated;
		if (easing && !animations[easing] && !$.easing[easing]) {
		easing = 'slide';
		}
		if (!animations[easing]) {
		animations[easing] = function(options) {
		this.slide(options, {
		easing: easing,
		duration: duration || 700
		});
		};
		}
		animations[easing](animOptions);
		} else {
		if (o.collapsible && clickedIsActive) {
		toShow.toggle();
		} else {
		toHide.hide();
		toShow.show();
		}
		complete(true);
		}
		toHide.prev().attr('aria-expanded','false').attr("tabIndex", "-1").blur();
		toShow.prev().attr('aria-expanded','true').attr("tabIndex", "0").focus();
		},
		_completed: function(cancel) {
		var o = this.options;
		this.running = cancel ? 0 : --this.running;
		if (this.running) return;
		if (o.clearStyle) {
		this.toShow.add(this.toHide).css({
		height: "",
		overflow: ""
		});
		}
		this.toHide.removeClass("ui-accordion-content-active");
		this._trigger('change', null, this.data);
		}
		});
		$.extend($.ui.accordion, {
		version: "1.8.2",
		animations: {
		slide: function(options, additions) {
		options = $.extend({
		easing: "swing",
		duration: 300
		}, options, additions);
		if ( !options.toHide.size() ) {
		options.toShow.animate({height: "show"}, options);
		return;
		}
		if ( !options.toShow.size() ) {
		options.toHide.animate({height: "hide"}, options);
		return;
		}
		var overflow = options.toShow.css('overflow'),
		percentDone = 0,
		showProps = {},
		hideProps = {},
		fxAttrs = [ "height", "paddingTop", "paddingBottom" ],
		originalWidth;
		var s = options.toShow;
		originalWidth = s[0].style.width;
		s.width( parseInt(s.parent().width(),10) - parseInt(s.css("paddingLeft"),10) - parseInt(s.css("paddingRight"),10) - (parseInt(s.css("borderLeftWidth"),10) || 0) - (parseInt(s.css("borderRightWidth"),10) || 0) );
		$.each(fxAttrs, function(i, prop) {
		hideProps[prop] = 'hide';
		var parts = ('' + $.css(options.toShow[0], prop)).match(/^([\d+-.]+)(.*)$/);
		showProps[prop] = {
		value: parts[1],
		unit: parts[2] || 'px'
		};
		});
		options.toShow.css({ height: 0, overflow: 'hidden' }).show();
		options.toHide.filter(":hidden").each(options.complete).end().filter(":visible").animate(hideProps,{
		step: function(now, settings) {
		if (settings.prop == 'height') {
		percentDone = ( settings.end - settings.start === 0 ) ? 0 :
		(settings.now - settings.start) / (settings.end - settings.start);
		}
		options.toShow[0].style[settings.prop] =
		(percentDone * showProps[settings.prop].value) + showProps[settings.prop].unit;
		},
		duration: options.duration,
		easing: options.easing,
		complete: function() {
		if ( !options.autoHeight ) {
		options.toShow.css("height", "");
		}
		options.toShow.css("width", originalWidth);
		options.toShow.css({overflow: overflow});
		options.complete();
		}
		});
		},
		bounceslide: function(options) {
		this.slide(options, {
		easing: options.down ? "easeOutBounce" : "swing",
		duration: options.down ? 1000 : 200
		});
		}
		}
		});
		})(jQuery);
		var overlay = null;
		$(document).ready(function(){
		overlay = $("#overlay");
		initTopPanel();
		if($("#zt-accordion").length) {
		$("#zt-accordion").accordion({
		autoHeight: false
		});
		}
		});
		jQuery.fn.fadeToggle = function(speed, easing, callback) {
		return this.animate({opacity: 'toggle'}, speed, easing, callback);
		};
		function initTopPanel()
		{
		$("#contact-panel-accordion").accordion({autoHeight: false});
		$("#contact-toggler").click(function(event){
		prepareOverlay(overlay);
		overlay.fadeToggle("slow");
		if($("div.frontpage-teaser-ticker-wrapper").length)
		{
		$("#ticker-mask").trigger("toggle");
		}
		$("#panel").slideToggle("slow", function(){
		$("#contact-toggler").toggleClass("opened");
		});
		event.preventDefault();
		});
		}
		function prepareOverlay()
		{
		var arrPageSizes = getPageSize();
		overlay.css({
		backgroundColor:	'#000',
		opacity:			0.5,
		width:				arrPageSizes[0],
		height:				arrPageSizes[1] - 90,
		top:                90
		});
		overlay.click(function(event){
		$("#panel").slideUp("slow", function(){
		$("#contact-toggler").removeClass("opened");
		});
		if($("div.frontpage-teaser-ticker-wrapper").length) {
		$("#ticker-mask").trigger("start");
		}
		overlay.fadeOut("slow");
		event.preventDefault();
		});
		}
		function getPageSize() {
		var xScroll, yScroll;
		if (window.innerHeight && window.scrollMaxY) {
		xScroll = window.innerWidth + window.scrollMaxX;
		yScroll = window.innerHeight + window.scrollMaxY;
		} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
		xScroll = document.body.scrollWidth;
		yScroll = document.body.scrollHeight;
		} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
		xScroll = document.body.offsetWidth;
		yScroll = document.body.offsetHeight;
		}
		var windowWidth, windowHeight;
		if (self.innerHeight) {	// all except Explorer
		if(document.documentElement.clientWidth){
		windowWidth = document.documentElement.clientWidth;
		} else {
		windowWidth = self.innerWidth;
		}
		windowHeight = self.innerHeight;
		} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
		windowWidth = document.documentElement.clientWidth;
		windowHeight = document.documentElement.clientHeight;
		} else if (document.body) { // other Explorers
		windowWidth = document.body.clientWidth;
		windowHeight = document.body.clientHeight;
		}
		if(yScroll < windowHeight){
		pageHeight = windowHeight;
		} else {
		pageHeight = yScroll;
		}
		if(xScroll < windowWidth){
		pageWidth = xScroll;
		} else {
		pageWidth = windowWidth;
		}
		arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
		return arrayPageSize;
		};
		;(function($){var n=$.event,resizeTimeout;n.special["smartresize"]={setup:function(){$(this).bind("resize",n.special.smartresize.handler)},teardown:function(){$(this).unbind("resize",n.special.smartresize.handler)},handler:function(a,b){var c=this,args=arguments;a.type="smartresize";if(resizeTimeout)clearTimeout(resizeTimeout);resizeTimeout=setTimeout(function(){jQuery.event.handle.apply(c,args)},b==="execAsap"?0:100)}};$.fn.smartresize=function(a){return a?this.bind("smartresize",a):this.trigger("smartresize",["execAsap"])};$.fn.masonry=function(l,m){function getBricks(a,b){a.$bricks=b.itemSelector==undefined?b.$brickParent.children():b.$brickParent.find(b.itemSelector)}function placeBrick(a,b,c,d,e,f){var g=0;for(i=0;i<b;i++){if(c[i]<c[g])g=i}var h={left:e.colW*g+e.posLeft,top:c[g]};if(e.masoned&&f.animate){a.animate(h,{duration:f.animationOptions.duration,easing:f.animationOptions.easing,complete:f.animationOptions.complete,step:f.animationOptions.step,queue:f.animationOptions.queue,specialEasing:f.animationOptions.specialEasing})}else{a.css(h)}for(i=0;i<d;i++){e.colY[g+i]=c[g]+a.outerHeight(true)}};function masonrySetup(a,b,c){getBricks(c,b);if(b.columnWidth==undefined){c.colW=c.masoned?a.data('masonry').colW:c.$bricks.outerWidth(true)}else{c.colW=b.columnWidth}c.colCount=Math.floor(a.width()/c.colW);c.colCount=Math.max(c.colCount,1)};function masonryArrange(e,f,g){if(!g.masoned)e.css('position','relative');if(!g.masoned||f.appendedContent!=undefined){g.$bricks.css('position','absolute')}var h=$('<div />');e.prepend(h);g.posTop=Math.round(h.position().top);g.posLeft=Math.round(h.position().left);h.remove();if(g.masoned&&f.appendedContent!=undefined){g.colY=e.data('masonry').colY;for(i=e.data('masonry').colCount;i<g.colCount;i++){g.colY[i]=g.posTop}}else{g.colY=[];for(i=0;i<g.colCount;i++){g.colY[i]=g.posTop}}if(f.singleMode){g.$bricks.each(function(){var a=$(this);placeBrick(a,g.colCount,g.colY,1,g,f)})}else{g.$bricks.each(function(){var a=$(this);var b=Math.ceil(a.outerWidth(true)/g.colW);b=Math.min(b,g.colCount);if(b==1){placeBrick(a,g.colCount,g.colY,1,g,f)}else{var c=g.colCount+1-b;var d=[0];for(i=0;i<c;i++){d[i]=0;for(j=0;j<b;j++){d[i]=Math.max(d[i],g.colY[i+j])}}placeBrick(a,c,d,b,g,f)}})}g.wallH=0;for(i=0;i<g.colCount;i++){g.wallH=Math.max(g.wallH,g.colY[i])}var k={height:g.wallH-g.posTop};if(g.masoned&&f.animate){e.animate(k,{duration:f.animationOptions.duration,easing:f.animationOptions.easing,complete:f.animationOptions.complete,step:f.animationOptions.step,queue:f.animationOptions.queue,specialEasing:f.animationOptions.specialEasing})}else{e.css(k)}if(!g.masoned)e.addClass('masoned');m.call(g.$bricks);e.data('masonry',g)};function masonryResize(a,b,c){c.masoned=a.data('masonry')!=undefined;var d=a.data('masonry').colCount;masonrySetup(a,b,c);if(c.colCount!=d)masonryArrange(a,b,c)};return this.each(function(){var a=$(this);var b=$.extend({},$.masonry);b.masoned=a.data('masonry')!=undefined;var c=b.masoned?a.data('masonry').options:{};var d=$.extend({},b.defaults,c,l);b.options=d.saveOptions?d:c;m=m||function(){};if(b.masoned&&d.appendedContent!=undefined){d.$brickParent=d.appendedContent}else{d.$brickParent=a}getBricks(b,d);if(b.$bricks.length){masonrySetup(a,d,b);masonryArrange(a,d,b);var e=c.resizeable;if(!e&&d.resizeable){$(window).bind('smartresize.masonry',function(){masonryResize(a,d,b)})}if(e&&!d.resizeable)$(window).unbind('smartresize.masonry')}else{return this}})};$.masonry={defaults:{singleMode:false,columnWidth:undefined,itemSelector:undefined,appendedContent:undefined,saveOptions:true,resizeable:true,animate:false,animationOptions:{}},colW:undefined,colCount:undefined,colY:undefined,wallH:undefined,masoned:undefined,posTop:0,posLeft:0,options:undefined,$bricks:undefined,$brickParent:undefined}})(jQuery);
		(function($){$.fn.tipTip=function(options){var defaults={activation:"hover",keepAlive:false,maxWidth:"200px",edgeOffset:3,defaultPosition:"bottom",delay:400,fadeIn:200,fadeOut:200,attribute:"title",content:false,enter:function(){},exit:function(){}};var opts=$.extend(defaults,options);if($("#tiptip_holder").length<=0){var tiptip_holder=$('<div id="tiptip_holder" style="max-width:'+opts.maxWidth+';"></div>');var tiptip_content=$('<div id="tiptip_content"></div>');var tiptip_arrow=$('<div id="tiptip_arrow"></div>');$("body").append(tiptip_holder.html(tiptip_content).prepend(tiptip_arrow.html('<div id="tiptip_arrow_inner"></div>')))}else{var tiptip_holder=$("#tiptip_holder");var tiptip_content=$("#tiptip_content");var tiptip_arrow=$("#tiptip_arrow")}return this.each(function(){var org_elem=$(this);if(opts.content){var org_title=opts.content}else{var org_title=org_elem.attr(opts.attribute)}if(org_title!=""){if(!opts.content){org_elem.removeAttr(opts.attribute)}var timeout=false;if(opts.activation=="hover"){org_elem.hover(function(){active_tiptip()},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}else if(opts.activation=="focus"){org_elem.focus(function(){active_tiptip()}).blur(function(){deactive_tiptip()})}else if(opts.activation=="click"){org_elem.click(function(){active_tiptip();return false}).hover(function(){},function(){if(!opts.keepAlive){deactive_tiptip()}});if(opts.keepAlive){tiptip_holder.hover(function(){},function(){deactive_tiptip()})}}function active_tiptip(){opts.enter.call(this);tiptip_content.html(org_title);tiptip_holder.hide().removeAttr("class").css("margin","0");tiptip_arrow.removeAttr("style");var top=parseInt(org_elem.offset()['top']);var left=parseInt(org_elem.offset()['left']);var org_width=parseInt(org_elem.outerWidth());var org_height=parseInt(org_elem.outerHeight());var tip_w=tiptip_holder.outerWidth();var tip_h=tiptip_holder.outerHeight();var w_compare=Math.round((org_width-tip_w)/2);var h_compare=Math.round((org_height-tip_h)/2);var marg_left=Math.round(left+w_compare);var marg_top=Math.round(top+org_height+opts.edgeOffset);var t_class="";var arrow_top="";var arrow_left=Math.round(tip_w-12)/2;if(opts.defaultPosition=="bottom"){t_class="_bottom"}else if(opts.defaultPosition=="top"){t_class="_top"}else if(opts.defaultPosition=="left"){t_class="_left"}else if(opts.defaultPosition=="right"){t_class="_right"}var right_compare=(w_compare+left)<parseInt($(window).scrollLeft());var left_compare=(tip_w+left)>parseInt($(window).width());if((right_compare&&w_compare<0)||(t_class=="_right"&&!left_compare)||(t_class=="_left"&&left<(tip_w+opts.edgeOffset+5))){t_class="_right";arrow_top=Math.round(tip_h-13)/2;arrow_left=-12;marg_left=Math.round(left+org_width+opts.edgeOffset);marg_top=Math.round(top+h_compare)}else if((left_compare&&w_compare<0)||(t_class=="_left"&&!right_compare)){t_class="_left";arrow_top=Math.round(tip_h-13)/2;arrow_left=Math.round(tip_w);marg_left=Math.round(left-(tip_w+opts.edgeOffset+5));marg_top=Math.round(top+h_compare)}var top_compare=(top+org_height+opts.edgeOffset+tip_h+8)>parseInt($(window).height()+$(window).scrollTop());var bottom_compare=((top+org_height)-(opts.edgeOffset+tip_h+8))<0;if(top_compare||(t_class=="_bottom"&&top_compare)||(t_class=="_top"&&!bottom_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_top"}else{t_class=t_class+"_top"}arrow_top=tip_h;marg_top=Math.round(top-(tip_h+5+opts.edgeOffset))}else if(bottom_compare|(t_class=="_top"&&bottom_compare)||(t_class=="_bottom"&&!top_compare)){if(t_class=="_top"||t_class=="_bottom"){t_class="_bottom"}else{t_class=t_class+"_bottom"}arrow_top=-12;marg_top=Math.round(top+org_height+opts.edgeOffset)}if(t_class=="_right_top"||t_class=="_left_top"){marg_top=marg_top+5}else if(t_class=="_right_bottom"||t_class=="_left_bottom"){marg_top=marg_top-5}if(t_class=="_left_top"||t_class=="_left_bottom"){marg_left=marg_left+5}tiptip_arrow.css({"margin-left":arrow_left+"px","margin-top":arrow_top+"px"});tiptip_holder.css({"margin-left":marg_left+"px","margin-top":marg_top+"px"}).attr("class","tip"+t_class);if(timeout){clearTimeout(timeout)}timeout=setTimeout(function(){tiptip_holder.stop(true,true).fadeIn(opts.fadeIn)},opts.delay)}function deactive_tiptip(){opts.exit.call(this);if(timeout){clearTimeout(timeout)}tiptip_holder.fadeOut(opts.fadeOut)}}})}})(jQuery);
		var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();
		$(document).ready(function(){
		$('#social').masonry({
		columnWidth: 194,
		itemSelector: '.social-box'
		});
		$(".tooltip").tipTip({
		defaultPosition: "top",
		edgeOffset: 0,
		maxWidth: 300,
		fadeOut: 0,
		fadeIn: 100,
		delay: 200
		});

		});

		
		
	
