$(document).ready(function(){
	DD_belatedPNG.fix('#header, .rightCol p');
	//--------------------------------------------------
	// MENU
	//--------------------------------------------------
	var m_par = false;
	var m_ent = false;
	var m_col = false;
	
	$(document).mouseleave(function(){
		$('.subNav').hide(0, function(){ m_par = false; m_ent = false; m_col = false; });
	});
	$('a.btActu').mouseover(function(){
		$('.subNav').hide(0, function(){ m_par = false; m_ent = false; m_col = false; });
	});
	$('a.btContact').mouseover(function(){
		$('.subNav').hide(0, function(){ m_par = false; m_ent = false; m_col = false; });
	});
	
	$('a.btParticulier').mouseover(function(){
		if(m_ent) { $('#menuEntreprise').hide(0, function() { m_ent = false; m_par = true; $('#menuParticulier').show(); }); }
		else { m_par = true; $('#menuParticulier').show(); }
	});
	$('#menuParticulier').mouseleave(function(){
		$(this).hide(0, function() { m_par = false; });
	});
	
	$('a.btEntreprise').mouseover(function(){
		if(m_par) { $('#menuParticulier').hide(0, function() { m_par = false; m_ent = true; $('#menuEntreprise').show(); });  }
		else if(m_col) { $('#menuCollectivite').hide(0, function() { m_col = false; m_ent = true; $('#menuEntreprise').show(); }); }
		else { m_ent = true; $('#menuEntreprise').show(); }
	});
	$('#menuEntreprise').mouseleave(function(){
		$(this).hide(0, function() { m_ent = false; });
	});	
	
	$('a.btCollectivite').mouseover(function(){
		if(m_ent) { $('#menuEntreprise').hide(0, function() { m_ent = false; m_col = true; $('#menuCollectivite').show(); }); }
		else { m_col = true; $('#menuCollectivite').show(); }
	});
	$('#menuCollectivite').mouseleave(function(){
		$(this).hide(0, function() { m_col = false; });
	});
	
	//--------------------------------------------------
	// MODAL
	//--------------------------------------------------
	$('#callback').click(function(e){
		$('#callBox').modal({ opacity:70, position:['90px',], onOpen:function(dialog) {
			dialog.overlay.fadeIn(200, function() { dialog.container.show(0,function() { dialog.data.slideDown(200); }); });
		}, onClose:function(dialog) {
			dialog.data.slideUp(200,function() { dialog.container.hide(0,function() { dialog.overlay.fadeOut(200, function() { $.modal.close(); }); }); });
		} });
		e.preventDefault();
	});
	
	$('#btSendContact').click(function(e){
		e.preventDefault();
		var nom = $('#nomField').val();
		var tel = $('#telField').val();
		var heure = $('#heureField').val();
		var err = false;
		
		if(!nom) { $('#nomLabel').addClass('red'); err = true; } else { $('#nomLabel').removeClass('red'); }
		if(!tel) { $('#telLabel').addClass('red'); err = true; } else { $('#telLabel').removeClass('red'); }
		if(err) { $('#callBox p').addClass('red'); }
		else {
			$('#callBox form').hide();
			$('#callBox h3').css('text-align','center').text('Envoi en cours...');
			$('#callBox a.simplemodal-close').after('<img class="loading" src="/imagerie/commun/loading.gif" width="32" height="32" alt="Patientez" />');
			$.post('/sendcall.php', { nom:nom, tel:tel, heure:heure } , function(data) {
				$('#callBox img.loading').remove();
				$('#callBox h3').text(data);
				setTimeout('$.modal.close()',1000);
			});
		}
	});
});
