var G_fichier_action='actions.php';

$(document).ready(function()
{
	images_survol();
	
	$('.sponsors a:empty').parent().remove();
	
	frmSubmit($('#frm_contact'), G_fichier_action, 'contact');
	
	if ($("#gallery").length==1)
	{
		$('#lastone').click(function(e){
		
			$('body').scrollTo('#footer',800, function(){
			$('#firstname').focus();
			
			});
			e.preventDefault();
			
			
		
		});

		var myImage = $('#my-message > img')
		
		myImage.hide();
		
		$('#upload')
		.mouseover(function()
		{		
			myImage.fadeIn(300);
		})
		.mouseout(function()
		{
			myImage.fadeOut(300);
		})
		
		frmSubmit($('#frm_gallery'), G_fichier_action, 'gallery');
	}
	else
	if ($("#links").length==1)
	{
		$('#frm_contact').unbind();
		frmSubmit($('#frm_contact'), G_fichier_action, 'links');
	}
	
	emails();
})

function contact_erreur(txt)
{
  $('#validation').append("<p id='contact_message'>✖ "+txt+".</p>");
}