// JavaScript Document

/*
.td_tab_access {background:url(../img/hotels/bg_tabs_hotel_acces.gif) top left no-repeat}
.td_tab_presta {background:url(../img/hotels/bg_tabs_hotel_presta.gif) top left no-repeat}
.td_tab_autours {background:url(../img/hotels/bg_tabs_hotel_alentours.gif) top left no-repeat}
*/

function ongletalentours(){

	$('onglet_access').hide();
	$('onglet_presta').hide();
	$('onglet_autours').show();

	$('hotel_alentours').show();
	$('hotel_prestas').hide();
	$('hotel_acces').hide();	

	$('td_tab_ongletshotel').className = 'td_tab_autours';

}

function ongletprestations(){
	

	$('onglet_access').hide();
	$('onglet_presta').show();
	$('onglet_autours').hide();

	$('hotel_alentours').hide();
	$('hotel_prestas').show();
	$('hotel_acces').hide();

	$('td_tab_ongletshotel').className = 'td_tab_presta';
}

function ongletacces(){
	

	$('onglet_access').show();
	$('onglet_presta').hide();
	$('onglet_autours').hide();
	
	$('hotel_alentours').hide();
	$('hotel_prestas').hide();
	$('hotel_acces').show();
	
	$('td_tab_ongletshotel').className = 'td_tab_access';
	
}




function imgBorderHeight(){
	
	imgheight01 = $('hotel_alentours').getHeight() + 20;
	imgheight02 = $('hotel_prestas').getHeight() + 20;
	imgheight03 = $('hotel_acces').getHeight() + 20;
	
	
	if(imgheight01>=imgheight02){
	
	
		if(imgheight01>imgheight03){
	
			$('img_border_tab').setStyle({
			  height: imgheight01+'px'
			});	
			$('hotel_alentours').setStyle({
			  height: imgheight01+'px'
			});	
			$('hotel_prestas').setStyle({
			  height: imgheight01+'px'
			});	
			$('hotel_acces').setStyle({
			  height: imgheight01+'px'
			});				
			
	
		}else{

			$('img_border_tab').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_alentours').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_prestas').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_acces').setStyle({
			  height: imgheight03+'px'
			});	
		
		}
	
	
	}else{

		if(imgheight02>imgheight03){
			
			$('img_border_tab').setStyle({
			  height: imgheight02+'px'
			});	
			$('hotel_alentours').setStyle({
			  height: imgheight02+'px'
			});	
			$('hotel_prestas').setStyle({
			  height: imgheight02+'px'
			});	
			$('hotel_acces').setStyle({
			  height: imgheight02+'px'
			});	
	
	
		}else{
		
			$('img_border_tab').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_alentours').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_prestas').setStyle({
			  height: imgheight03+'px'
			});	
			$('hotel_acces').setStyle({
			  height: imgheight03+'px'
			});		
	
		}	
	
	
	}
	
	
	
}













