jQuery(document).ready(on_ready);
function on_ready() {
jQuery('#search').defaultVal('search here...');
jQuery('#comment').defaultVal('your comment here...');
jQuery('#message').defaultVal('your message here...');
enable_smooth_scroll();
if (typeof sh_highlightDocument == "function") {
sh_highlightDocument();
}
if (typeof pageTracker != 'undefined') {
pageTracker._trackEvent(
'Browser Dimensions',
'load',
jQuery(window).width()
+ 'x'
+ jQuery(window).height(),
jQuery(window).width()
);
jQuery(window).resize(function () {
if (jQuery(this).data('gatimer')) {
clearTimeout(jQuery(this).data('gatimer'));
jQuery(this).data('gatimer', null);
}
jQuery(this).data(
'gatimer',
setTimeout(function () {
pageTracker._trackEvent(
'Browser Dimensions',
'resize',
jQuery(window).width()
+ 'x'
+ jQuery(window).height(),
jQuery(window).width()
);
},
500
)
);
});
}
jQuery(window).bind('scroll', function () {
if (jQuery(this).scrollTop() > jQuery('#footerCenter').offset().top - jQuery(window).height() - 60) {
if (jQuery('#earthMoonLink').hasClass('more')) {
jQuery('#earthMoonLink').removeClass('more').text('earth').attr({href: '#Earth', title: 'Back to Top'});
}
} else {
if (!jQuery('#earthMoonLink').hasClass('more')) {
jQuery('#earthMoonLink').addClass('more').text('moon').attr({href: '#Moon', title: 'Jump to Footer'});
}
}
});
}
function LOG(msg) {
try {
if (console) {
console.log(msg);
}
} catch(err) {}
}
(function (jQuery) {
// Monkey patch jQuery 1.3.1+ css() method to support CSS 'transform'
// property uniformly across Webkit/Safari/Chrome, Firefox 3.5+, and IE 9+.
// 2009-2011 Zachary Johnson www.zachstronaut.com
// Updated 2011.05.04 (May the fourth be with you!)
function getTransformProperty(element)
{
// Try transform first for forward compatibility
// In some versions of IE9, it is critical for msTransform to be in
// this list before MozTranform.
var properties = ['transform', 'WebkitTransform', 'msTransform', 'MozTransform', 'OTransform'];
var p;
while (p = properties.shift())
{
if (typeof element.style[p] != 'undefined')
{
return p;
}
}
// Default to transform also
return 'transform';
}
var _propsObj = null;
var proxied = jQuery.fn.css;
jQuery.fn.css = function (arg, val)
{
// Temporary solution for current 1.6.x incompatibility, while
// preserving 1.3.x compatibility, until I can rewrite using CSS Hooks
if (_propsObj === null)
{
if (typeof jQuery.cssProps != 'undefined')
{
_propsObj = jQuery.cssProps;
}
else if (typeof jQuery.props != 'undefined')
{
_propsObj = jQuery.props;
}
else
{
_propsObj = {}
}
}
// Find the correct browser specific property and setup the mapping using
// jQuery.props which is used internally by jQuery.attr() when setting CSS
// properties via either the css(name, value) or css(properties) method.
// The problem with doing this once outside of css() method is that you
// need a DOM node to find the right CSS property, and there is some risk
// that somebody would call the css() method before body has loaded or any
// DOM-is-ready events have fired.
if
(
typeof _propsObj['transform'] == 'undefined'
&&
(
arg == 'transform'
||
(
typeof arg == 'object'
&& typeof arg['transform'] != 'undefined'
)
)
)
{
_propsObj['transform'] = getTransformProperty(this.get(0));
}
// We force the property mapping here because jQuery.attr() does
// property mapping with jQuery.props when setting a CSS property,
// but curCSS() does *not* do property mapping when *getting* a
// CSS property. (It probably should since it manually does it
// for 'float' now anyway... but that'd require more testing.)
//
// But, only do the forced mapping if the correct CSS property
// is not 'transform' and is something else.
if (_propsObj['transform'] != 'transform')
{
// Call in form of css('transform' ...)
if (arg == 'transform')
{
arg = _propsObj['transform'];
// User wants to GET the transform CSS, and in jQuery 1.4.3
// calls to css() for transforms return a matrix rather than
// the actual string specified by the user... avoid that
// behavior and return the string by calling jQuery.style()
// directly
if (typeof val == 'undefined' && jQuery.style)
{
return jQuery.style(this.get(0), arg);
}
}
// Call in form of css({'transform': ...})
else if
(
typeof arg == 'object'
&& typeof arg['transform'] != 'undefined'
)
{
arg[_propsObj['transform']] = arg['transform'];
delete arg['transform'];
}
}
return proxied.apply(this, arguments);
};
})(jQuery);
(function (jQuery) {
// Monkey patch jQuery 1.3.1+ to add support for setting or animating CSS
// scale and rotation independently.
// 2009-2010 Zachary Johnson www.zachstronaut.com
// Updated 2010.11.06
var rotateUnits = 'deg';
jQuery.fn.rotate = function (val)
{
var style = jQuery(this).css('transform') || 'none';
if (typeof val == 'undefined')
{
if (style)
{
var m = style.match(/rotate\(([^)]+)\)/);
if (m && m[1])
{
return m[1];
}
}
return 0;
}
var m = val.toString().match(/^(-?\d+(\.\d+)?)(.+)?jQuery/);
if (m)
{
if (m[3])
{
rotateUnits = m[3];
}
jQuery(this).css(
'transform',
style.replace(/none|rotate\([^)]*\)/, '') + 'rotate(' + m[1] + rotateUnits + ')'
);
}
return this;
}
// Note that scale is unitless.
jQuery.fn.scale = function (val, duration, options)
{
var style = jQuery(this).css('transform');
if (typeof val == 'undefined')
{
if (style)
{
var m = style.match(/scale\(([^)]+)\)/);
if (m && m[1])
{
return m[1];
}
}
return 1;
}
jQuery(this).css(
'transform',
style.replace(/none|scale\([^)]*\)/, '') + 'scale(' + val + ')'
);
return this;
}
// fx.cur() must be monkey patched because otherwise it would always
// return 0 for current rotate and scale values
var curProxied = jQuery.fx.prototype.cur;
jQuery.fx.prototype.cur = function ()
{
if (this.prop == 'rotate')
{
return parseFloat(jQuery(this.elem).rotate());
}
else if (this.prop == 'scale')
{
return parseFloat(jQuery(this.elem).scale());
}
return curProxied.apply(this, arguments);
}
jQuery.fx.step.rotate = function (fx)
{
jQuery(fx.elem).rotate(fx.now + rotateUnits);
}
jQuery.fx.step.scale = function (fx)
{
jQuery(fx.elem).scale(fx.now);
}
/*
Starting on line 3905 of jquery-1.3.2.js we have this code:
// We need to compute starting value
if ( unit != "px" ) {
self.style[ name ] = (end || 1) + unit;
start = ((end || 1) / e.cur(true)) * start;
self.style[ name ] = start + unit;
}
This creates a problem where we cannot give units to our custom animation
because if we do then this code will execute and because self.style[name]
does not exist where name is our custom animation's name then e.cur(true)
will likely return zero and create a divide by zero bug which will set
start to NaN.
The following monkey patch for animate() gets around this by storing the
units used in the rotation definition and then stripping the units off.
*/
var animateProxied = jQuery.fn.animate;
jQuery.fn.animate = function (prop)
{
if (typeof prop['rotate'] != 'undefined')
{
var m = prop['rotate'].toString().match(/^(([+-]=)?(-?\d+(\.\d+)?))(.+)?jQuery/);
if (m && m[5])
{
rotateUnits = m[5];
}
prop['rotate'] = m[1];
}
return animateProxied.apply(this, arguments);
}
})(jQuery);
// http://www.learningjquery.com/2007/10/improved-animated-scrolling-script-for-same-page-links
// major changes by Paul Armstrong and Zachary Johnson
function enable_smooth_scroll() {
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}jQuery/,'')
.replace(/\/jQuery/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElement = 'html, body';
jQuery('html, body').each(function () {
var initScrollTop = jQuery(this).attr('scrollTop');
jQuery(this).attr('scrollTop', initScrollTop + 1);
if (jQuery(this).attr('scrollTop') == initScrollTop + 1) {
scrollElement = this.nodeName.toLowerCase();
jQuery(this).attr('scrollTop', initScrollTop);
return false;
}
});
jQuery('a[href*=#]').each(function() {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/, '')
) {
if (jQuery(this.hash).length) {
jQuery(this).click(function(event) {
var targetOffset = jQuery(this.hash).offset().top;
var target = this.hash;
event.preventDefault();
jQuery(scrollElement).animate({scrollTop: targetOffset}, 500, function() {
location.hash = target;
});
});
}
}
});
}
/**
* jQuery Default Value Plugin v1.0
* Progressive enhancement technique for inital input field values
*
* The MIT License
*
* Copyright (c) 2007 Paul Campbell (pauljamescampbell.co.uk)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* Improvements by Zachary Johnson 2009
*/
(function(jQuery) {
jQuery.fn.defaultVal = function() {
// Scope
var elements = this;
var args = arguments;
var c = 0;
return (
elements.each(function() {
var el = jQuery(this);
var value = args[c++];
if (el.val() == '') {
el.val(value);
}
el.focus(function() {
if(el.val() == value) {
el.val('');
}
el.blur(function() {
if(el.val() == '') {
el.val(value);
}
});
});
})
);
};
})(jQuery);
/*! Copyright (c) 2010 Brandon Aaron (http://brandonaaron.net)
* Licensed under the MIT License (LICENSE.txt).
*/
(function(jQuery) {
// backgroundPosition[X,Y] get hooks
var jQuerydiv = jQuery('<div style="background-position: 3px 5px">');
jQuery.support.backgroundPosition = jQuerydiv.css('backgroundPosition') === "3px 5px" ? true : false;
jQuery.support.backgroundPositionXY = jQuerydiv.css('backgroundPositionX') === "3px" ? true : false;
jQuerydiv = null;
var xy = ["X","Y"];
// helper function to parse out the X and Y values from backgroundPosition
function parseBgPos(bgPos) {
var parts = bgPos.split(/\s/),
values = {
"X": parts[0],
"Y": parts[1]
};
return values;
}
if (!jQuery.support.backgroundPosition && jQuery.support.backgroundPositionXY) {
jQuery.cssHooks.backgroundPosition = {
get: function( elem, computed, extra ) {
return jQuery.map(xy, function( l, i ) {
return jQuery.css(elem, "backgroundPosition" + l);
}).join(" ");
},
set: function( elem, value ) {
jQuery.each(xy, function( i, l ) {
var values = parseBgPos(value);
elem.style[ "backgroundPosition" + l ] = values[ l ];
});
}
};
}
if (jQuery.support.backgroundPosition && !jQuery.support.backgroundPositionXY) {
jQuery.each(xy, function( i, l ) {
jQuery.cssHooks[ "backgroundPosition" + l ] = {
get: function( elem, computed, extra ) {
var values = parseBgPos( jQuery.css(elem, "backgroundPosition") );
return values[ l ];
},
set: function( elem, value ) {
var values = parseBgPos( jQuery.css(elem, "backgroundPosition") ),
isX = l === "X";
elem.style.backgroundPosition = (isX ? value : values[ "X" ]) + " " +
(isX ? values[ "Y" ] : value);
}
};
jQuery.fx.step[ "backgroundPosition" + l ] = function( fx ) {
jQuery.cssHooks[ "backgroundPosition" + l ].set( fx.elem, fx.now + fx.unit );
};
});
}
})(jQuery);
/* http://jquery.thewikies.com/swfobject/ */
/* jquery.swfobject.license.txt */
 

////////////////////////////////////////
jQuery(document).ready(function () {
	 jQuery('.zabor').css({'height': ((jQuery(window).height()))});

    jQuery(window).resize(function(){
        jQuery('.zabor').css({'height': ((jQuery(window).height()))});
    });
    	 jQuery('.zabor').css({'width': '1195px'});

jQuery(".zoom a").bind(
	"mouseover",
	function(){
		jQuery(".zoom img").animate({opacity:1}, 500);
	});
jQuery( ".zoom a" ).bind(
    "mouseout",
    function( event ){
      jQuery('.zoom img').animate({opacity:0}, 500);
   });
jQuery(".zoom a").click(
	function(){
		jQuery(".zoom img").css({opacity:0});
	});

jQuery(".oreol a").bind(
	"mouseover",
	function(){
		jQuery(".oreol img").animate({opacity:1}, 500);
	});
jQuery( ".oreol a" ).bind(
    "mouseout",
    function( event ){
      jQuery('.oreol img').animate({opacity:0}, 500);
   });
jQuery(".oreol a").click(
	function(){
		jQuery(".oreol img").css({opacity:0});
	});
////////////////////////////////////////////
jQuery(document).ready(function () {
jQuery('.zabor_box div.back').hide().css('left', 0);







function mySideChange1(front) {
    if (front) {
        jQuery('.doska1 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska1 img').css('visibility', 'hidden');
    }
}
function mySideChange2(front) {
    if (front) {
        jQuery('.doska2 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska2 img').css('visibility', 'hidden');
    }
}
function mySideChange3(front) {
    if (front) {
        jQuery('.doska3 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska3 img').css('visibility', 'hidden');
    }
}
function mySideChange4(front) {
    if (front) {
        jQuery('.doska4 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska4 img').css('visibility', 'hidden');
    }
}
function mySideChange5(front) {
    if (front) {
        jQuery('.doska5 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska5 img').css('visibility', 'hidden');
    }
}
function mySideChange6(front) {
    if (front) {
        jQuery('.doska6 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska6 img').css('visibility', 'hidden');
    }
}
function mySideChange7(front) {
    if (front) {
        jQuery('.doska7 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska7 img').css('visibility', 'hidden');
    }
}
function mySideChange8(front) {
    if (front) {
        jQuery('.doska8 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska8 img').css('visibility', 'hidden');
    }
}
function mySideChange9(front) {
    if (front) {
        jQuery('.doska9 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska9 img').css('visibility', 'hidden');
    }
}
function mySideChange10(front) {
    if (front) {
        jQuery('.doska10 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska10 img').css('visibility', 'hidden');
    }
}
function mySideChange11(front) {
    if (front) {
        jQuery('.doska11 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska11 img').css('visibility', 'hidden');
    }
}
function mySideChange12(front) {
    if (front) {
        jQuery('.doska12 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska12 img').css('visibility', 'hidden');
    }
}
function mySideChange13(front) {
    if (front) {
        jQuery('.doska13 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska13 img').css('visibility', 'hidden');
    }
}
function mySideChange14(front) {
    if (front) {
        jQuery('.doska14 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska14 img').css('visibility', 'hidden');
    }
}
function mySideChange15(front) {
    if (front) {
        jQuery('.doska15 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska15 img').css('visibility', 'hidden');
    }
}
function mySideChange16(front) {
    if (front) {
        jQuery('.doska16 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska16 img').css('visibility', 'hidden');
    }
}
function mySideChange17(front) {
    if (front) {
        jQuery('.doska17 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska17 img').css('visibility', 'hidden');
    }
}
function mySideChange18(front) {
    if (front) {
        jQuery('.doska18 img').css('visibility', 'visible');
    } else {
        jQuery(this).css('background', '#000');
        jQuery('.doska18 img').css('visibility', 'hidden');
    }
}

jQuery(document).ready(function () {
jQuery('.doska').stop().rotate3Di(-90);
jQuery('.doska1').stop().rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange1});
jQuery('.doska2').stop().delay(10).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange2});
jQuery('.doska3').stop().delay(30).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange3});
jQuery('.doska4').stop().delay(50).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange4});
jQuery('.doska5').stop().delay(70).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange5});
jQuery('.doska6').stop().delay(90).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange6});
jQuery('.doska7').stop().delay(110).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange7});
jQuery('.doska8').stop().delay(130).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange8});
jQuery('.doska9').stop().delay(150).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange9});
jQuery('.doska10').stop().delay(170).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange10});
jQuery('.doska11').stop().delay(190).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange11});
jQuery('.doska12').stop().delay(210).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange12});
jQuery('.doska13').stop().delay(230).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange13});
jQuery('.doska14').stop().delay(250).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange14});
jQuery('.doska15').stop().delay(270).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange15});
jQuery('.doska16').stop().delay(290).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange16});
jQuery('.doska17').stop().delay(310).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange17});
jQuery('.doska18').stop().delay(330).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange18});
});

jQuery('.zoom a, .lng a, .oreol a').click(
function () {
    alert('asd');
    jQuery('.doska1').stop().rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange1});
},
function () {jQuery('.doska1').stop().rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange1});}

);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska2').stop().delay(10).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange2});},
function () {jQuery('.doska2').stop().delay(10).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange2});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska3').stop().delay(30).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange3});},
function () {jQuery('.doska3').stop().delay(30).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange3});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska4').stop().delay(50).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange4});},
function () {jQuery('.doska4').stop().delay(50).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange4});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska5').stop().delay(70).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange5});},
function () {jQuery('.doska5').stop().delay(70).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange5});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska6').stop().delay(90).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange6});},
function () {jQuery('.doska6').stop().delay(90).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange6});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska7').stop().delay(110).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange7});},
function () {jQuery('.doska7').stop().delay(110).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange7});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska8').stop().delay(130).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange8});},
function () {jQuery('.doska8').stop().delay(130).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange8});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska9').stop().delay(150).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange9});},
function () {jQuery('.doska9').stop().delay(150).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange9});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska10').stop().delay(170).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange10});},
function () {jQuery('.doska10').stop().delay(170).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange10});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska11').stop().delay(190).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange11});},
function () {jQuery('.doska11').stop().delay(190).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange11});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska12').stop().delay(210).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange12});},
function () {jQuery('.doska12').stop().delay(210).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange12});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska13').stop().delay(230).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange13});},
function () {jQuery('.doska13').stop().delay(230).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange13});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska14').stop().delay(250).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange14});},
function () {jQuery('.doska14').stop().delay(250).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange14});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska15').stop().delay(270).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange15});},
function () {jQuery('.doska15').stop().delay(270).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange15});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska16').stop().delay(290).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange16});},
function () {jQuery('.doska16').stop().delay(290).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange16});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska17').stop().delay(310).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange17});},
function () {jQuery('.doska17').stop().delay(310).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange17});}
);
jQuery('.zoom a, .lng a, .oreol a').click(
function () {jQuery('.doska18').stop().delay(330).rotate3Di('flip', 500, {direction: 'clockwise', sideChange: mySideChange18});},
function () {jQuery('.doska18').stop().delay(330).rotate3Di('unflip', 500, {direction: 'clockwise', sideChange: mySideChange18});}
);
}); 


});
