// javascript

$(document).ready(function() {	
	/* Load jQuery date picker */
	$("#arrival").datepicker({
		showOn: 'both',
		buttonImage: 'tl_files/gartenhotel_rosenhof/images/icon-calendar.png',
		buttonImageOnly: true,
		minDate: 0,
		showButtonPanel: true,
		changeMonth: true,
		changeYear: true
	});
	
	$("#departure").datepicker({
		showOn: 'both',
		buttonImage: 'tl_files/gartenhotel_rosenhof/images/icon-calendar.png',
		buttonImageOnly: true,
		minDate: 1,
		showButtonPanel: true,
		changeMonth: true,
		changeYear: true      
	});

        $('a[rel*=lightbox]').lightBox({
		overlayBgColor: '#000',
		overlayOpacity: 0.6,
		imageLoading: 'http://leogang-online.at/contao/tl_files/gartenhotel_rosenhof/images/lightbox-ico-loading.gif',
		imageBtnClose: 'http://leogang-online.at/contao/tl_files/gartenhotel_rosenhof/images/lightbox-btn-close.gif',
		imageBtnPrev: 'http://leogang-online.at/contao/tl_files/gartenhotel_rosenhof/images/lightbox-btn-prev.gif',
		imageBtnNext: 'http://leogang-online.at/contao/tl_files/gartenhotel_rosenhof/images/lightbox-btn-next.gif',
		containerResizeSpeed: 350,
		txtImage: 'Bild',
	        txtOf: 'von'
        });
		
//	$('#main a:has(img)').each(function(index,element) {
//		if(!$(element).hasClass('list_imglink')) {
//			href = $(element).attr('href');
//			fend = href.substr(href.length - 4).toLowerCase();
//			if(fend != ".jpg" && fend != ".gif" && fend != ".png" && fend != "jpeg") {
//				$(element).addClass("linkbild");
//				$(element).prepend('<img src="tl_files/gartenhotel_rosenhof/images/zoomIcon.jpg" width="14" height="14" alt="" class="zoom_icon_zwei" />');
//			}
//		}
//	});
});

