imagesSlideShowHandlesContainer=".slider_bottom";imagesSlideShowLeftHandle=".slider_bottom_left";imagesSlideShowRightHandle=".slider_bottom_right";imagesSlideShowImagesContainer=".gallery_slideshow";var $slidingImages=jQuery(imagesSlideShowImagesContainer+" a");var transitionInSpeed=700;var transitionOutSpeed=300;jQuery(document).ready(function(){var slideImagesCount=$slidingImages.length;firstImgIndex=0;if($slidingImages.length>2){jQuery(imagesSlideShowLeftHandle).css({"display":"none"});showImages(firstImgIndex);jQuery(imagesSlideShowRightHandle).click(function(){hideImages(firstImgIndex);firstImgIndex=firstImgIndex+2;showImages(firstImgIndex);if(firstImgIndex+2>=slideImagesCount){jQuery(imagesSlideShowRightHandle).css({"display":"none"},"normal");}
else{jQuery(imagesSlideShowRightHandle).css({"display":"block"});}
jQuery(imagesSlideShowLeftHandle).css({"display":"block"});});jQuery(imagesSlideShowLeftHandle).click(function(){hideImages(firstImgIndex);if(firstImgIndex==2){jQuery(imagesSlideShowLeftHandle).css({"display":"none"},"normal");}
else{jQuery(imagesSlideShowLeftHandle).css({"display":"block"});}
jQuery(imagesSlideShowRightHandle).css({"display":"block"});firstImgIndex=firstImgIndex-2;showImages(firstImgIndex);});}
else{jQuery(imagesSlideShowHandlesContainer).css({"display":"none"});}});function showImages(index)
{jQuery($slidingImages).eq(index).fadeIn(transitionInSpeed);jQuery($slidingImages).eq(index+1).fadeIn(transitionInSpeed);}
function hideImages(index)
{jQuery($slidingImages).eq(index).fadeOut(transitionOutSpeed);jQuery($slidingImages).eq(index+1).fadeOut(transitionOutSpeed);}
