$(window).load(function(){
	
	
	
	
	
	$('#nous-contacter .croix').click(function(){
		$('.onglet').animate({top:'0px'},500);
		$('#total-wrapper').removeClass('ouvert-contact').addClass('ferme');
		$('#nous-contacter').animate({height:'0px'},500);
	
		$('#onglet-nous-contacter').removeClass('selected');
		
		return false;
	});
	
	
	$('#rechercher .croix').click(function(){
		$('.onglet').animate({top:'0px'},500);
		$('#total-wrapper').removeClass('ouvert-recherche').addClass('ferme');
		$('#rechercher').animate({height:'0px'},500);
	
		$('#onglet-rechercher').removeClass('selected');

	});
	
	if($('#map1 div iframe').html()==null)
			{
				$('#map1 div').html('<iframe width="300" height="170" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.fr/maps?f=q&amp;source=s_q&amp;hl=fr&amp;geocode=&amp;q=23+Rue+Michel+Le+Comte,+Paris&amp;sll=46.75984,1.738281&amp;sspn=11.095343,22.91748&amp;ie=UTF8&amp;hq=&amp;hnear=23+Rue+Michel+Le+Comte,+75003+Paris,+Ile-de-France&amp;z=14&amp;ll=48.862483,2.355158&amp;output=embed"></iframe>');
			}

			if($('#map2 div iframe').html()==null)
			{
				$('#map2 div').html('<iframe width="300" height="170" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.fr/maps?f=q&amp;source=s_q&amp;hl=fr&amp;geocode=&amp;q=6+Place+des+Terreaux,+Lyon&amp;sll=46.75984,1.738281&amp;sspn=11.426675,29.509277&amp;ie=UTF8&amp;hq=&amp;hnear=Place+des+Terreaux,+69001+Lyon&amp;ll=45.767726,4.83377&amp;spn=0.011361,0.028818&amp;output=embed"></iframe>');
			}
	
	$('#onglet-nous-contacter').click(function(){
		
		if((!$(this).hasClass('selected')) && (!$('#onglet-rechercher').hasClass('selected'))) //les deux sont fermes
		{
						
			$('.onglet').animate({top:'-275px'},500);
			$('#total-wrapper').removeClass('ferme').addClass('ouvert-contact');
			$('#nous-contacter').animate({height:'275px'},500);

			$(this).addClass('selected');
		}
		else 
		{
			if($(this).hasClass('selected')) //ouvert reclic sur le bouton : fermeture
			{
				$('.onglet').animate({top:'0px'},500);
				$('#total-wrapper').removeClass('ouvert-contact').addClass('ferme');
				$('#nous-contacter').animate({height:'0px'},500);
			
				$(this).removeClass('selected');
				
				
			}
			else //ouverture de contact alors que recherche était ouvert
			{
				$('.onglet').animate({top:'-275px'},500);
				$('#total-wrapper').removeClass('ouvert-recherche').addClass('ouvert-contact');
				
				$('#nous-contacter').animate({height:'275px'},500);
				$('#rechercher').animate({height:'0px'},500);
				
				$('#onglet-rechercher').removeClass('selected');
				$(this).addClass('selected');
				
				
			}
		}
		
		return false;
	});
	
	
	$('#onglet-rechercher').click(function(){
		if((!$(this).hasClass('selected')) && (!$('#onglet-nous-contacter').hasClass('selected'))) //les deux sont fermes
		{
			$('.onglet').animate({top:'-170px'},500);
			$('#total-wrapper').removeClass('ferme').addClass('ouvert-recherche');	
			
			$('#rechercher').animate({height:'170px'},500);
		
			$(this).addClass('selected');
		}
		else 
		{
			if($(this).hasClass('selected')) //ouvert reclic sur le bouton : fermeture
			{
				$('.onglet').animate({top:'0px'},500);
				$('#total-wrapper').removeClass('ouvert-recherche').addClass('ferme');
				$('#rechercher').animate({height:'0px'},500);
				
				$(this).removeClass('selected');
	
			}
			else //ouverture de recherche alors que contact était ouvert
			{
				$('.onglet').animate({top:'-170px'},500);
				
				$('#total-wrapper').removeClass('ouvert-contact').addClass('ouvert-recherche');
				
				$('#nous-contacter').animate({height:'0px'},500);
				$('#rechercher').animate({height:'170px'},500);
				
					
				$('#onglet-nous-contacter').removeClass('selected');
				$(this).addClass('selected');
				
				
			}
		}
		
		return false;
	});

});
$('.gsom_sfi input').live('click',function(){
		if($(this).val()=='S\'inscrire à la newsletter')
			$(this).val('');
	});
