
			$(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>';
						}
				});
				
				
			});
			
			function showPrice(acc)
			{
				$('table.prices').addClass('hide');
				$('table.prices.'+acc).removeClass('hide');
				
				$('span.pricelink').removeClass('selected');
				$('span.pricelink.'+acc).addClass('selected');
			}
