var G_fichier_action='actions.php';

$(document).ready(function()
{
	if ($("#footer").length==1)
	{
		frmSubmit($('#footer form'), G_fichier_action, 'contact');
	}
	
	if ($("#index").length==1)
	{
		$('#wrapVideo p:first-child').hide();
		$('#video img+img').hide();
		
		$('.btn').click(function(e){ 
    		
    		e.preventDefault();
		
		});
		
		$('.btn').toggle(function(){
   
   			$('#wrapVideo p:first-child').slideDown("slow");
   			
   			$('#video img:first-child').fadeOut('fast');
   			$('#video img+img').fadeIn('fast');
   			
   			//alert($(this).attr('src'));
   			
   		},function(){
   		
   			$('#wrapVideo p:first-child').slideUp("slow");
   			
   			$('#video img:first-child').fadeIn('fast');
   			$('#video img+img').fadeOut('fast');
   			
   		});
 
	}
	
	if ($("#top").length==1)
	{
	
		$('#top a[href*=#]').attr('href','mailto:info@spaentresoi.com');
	
	}
})

function contact_erreur(zn)
{
	$('#'+zn).addClass('error');
}

function affiche_alert(input)
{
	$('#'+input).parent('p').addClass('error');
}
