// JavaScript Document
// PNG fix
jQuery(document).ready(function() {
	if( jQuery.browser.msie && (jQuery.browser.version == "6.0") ) {
		DD_belatedPNG.fix('.sogeprom_png');
	} else if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)) {
		replaceFlashSlider();
		replaceFlashMap();
	}
});
function show_bloc_lots()
{
	$('#bloc_tab_lots').show();
	$('#bloc_presentation').hide();
	$('#bloc_prestations').hide();
	
	$('#btntab_lots').addClass('active');
	$('#btntab_prestations').removeClass('active');
	$('#btntab_presentation').removeClass('active');
}
function show_bloc_presentation()
{
	$('#bloc_presentation').show();
	$('#bloc_tab_lots').hide();
	$('#bloc_prestations').hide();
	
	$('#btntab_lots').removeClass('active');
	$('#btntab_prestations').removeClass('active');
	$('#btntab_presentation').addClass('active');
}
function show_bloc_prestations()
{
	$('#bloc_prestations').show();
	$('#bloc_tab_lots').hide();
	$('#bloc_presentation').hide();
	
	$('#btntab_lots').removeClass('active');
	$('#btntab_prestations').addClass('active');
	$('#btntab_presentation').removeClass('active');
}





