
			function addSlideTips() {
		
					new Tip('list0', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list1', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list2', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list3', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list4', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list5', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
					new Tip('list6', 'Click for gallery', {style: 'holidaychateau', hideAfter: 2, stem: 'topLeft', title: ''});
			new Tip('horizontal_previous_button', 'Click to scroll left', {style: 'holidaychateau', stem: 'leftMiddle', hideAfter: 2, hook: { tip: 'topLeft', mouse: false }, offset: { x: 38, y: 75 }}); 
						
			new Tip('horizontal_next_button', 'Click to scroll right', {style: 'holidaychateau', stem: 'rightMiddle', hideAfter: 2, hook: { tip: 'topRight', mouse: false }, offset: { x: 10, y: 75}});
		}
		
		Event.observe(window,"load",runCarousel);
		Event.observe(window,"load",addSlideTips);

		document.observe('lightview:opened', function(event) {
			if ( $('availabilityCalendar') ) {
				$('availabilityCalendar').hide();
			}
		});
					
		document.observe('lightview:hidden', function(event) {
			if ( $('availabilityCalendar') ) {
				$('availabilityCalendar').show();
			}
		});
		