var whoisV = '';

function chkboo () {

	var bVisH = $('booking_f_h_h').getStyle('visibility');
	var bVisF = $('booking_f_h_f').getStyle('visibility');
	
	if (bVisH == 'visible') {
		
		$('booking_f_h_h').setStyle('visibility', 'hidden');
		whoisV = 'booking_f_h_h';
	}	
	else if (bVisF == 'visible') {
	
		$('booking_f_h_f').setStyle('visibility', 'hidden');
		whoisV = 'booking_f_h_f';
	}
}

function rstboo () {
	if (whoisV!='')
	{
		$(whoisV).setStyle('visibility', 'visible');
	}
	
	//alert(whoisV);
}



window.addEvent('domready', function() {

			
			
	var info_pages_e = $('contatore_home');				 								 
	var eS4 = new noobSlide({
			box: $('box_home_news'),
			items: $$('#box_home_news div'),
			size: 232,
			addButtons: {previous: $('preve_home'), next: $('nexte_home') },
			onWalk: function(currentItem,currentHandle)
			{
				info_pages_e.empty();
				info_pages_e.set('html',(this.currentIndex+1)+'/'+this.items.length);		
			}
		});

});