
			$(function(){
			
				 $("a[rel=hoteltumb]").fancybox({
						'transitionIn'		: 'none',
						'transitionOut'		: 'none',
						'titlePosition' 	: 'over',
						'cyclic'			: 'false',
						'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
							return '<span id="fancybox-title-over"> '+title + ': ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' : '') + '</span>';
						}
				});
				
				 if ($('ul.imageSlideshow').length )
				{
					 
					 $('ul.imageSlideshow').bxSlider({
						 infiniteLoop: true,
						 displaySlideQty: 5,
						 moveSlideQty: 1
					 });
				}
				 
				 if ($('ul.imageSlideshow3').length )
					{
						 
						 $('ul.imageSlideshow3').bxSlider({
							 infiniteLoop: true,
							 displaySlideQty: 3,
							 moveSlideQty: 1
						 });
					}
				
			});
			
			function showPrice(acc)
			{
				$('table.prices').addClass('hide');
				$('table.prices.'+acc).removeClass('hide');
				
				$('span.pricelink').removeClass('selected');
				$('span.pricelink.'+acc).addClass('selected');
			}
			
			
