/*-----------------------------------------------------------------------------------------------*/
//
// Copyright (c) 2008 Agence Clark (http://www.agence-clark.com)
//
/*-----------------------------------------------------------------------------------------------*/

/*-----------------------------------------------------------------------------------------------*/
// Init Page
/*-----------------------------------------------------------------------------------------------*/
Event.observe(window, 'load', InitPage, false);
function InitPage(){
	RollOverImage();	
	focusInput();
}

/*-----------------------------------------------------------------------------------------------*/
// Fonctions
/*-----------------------------------------------------------------------------------------------*/

// --- Verification de formulaire --- //
var frmEnquirySubmit = function() {
	param_form = { mep: 'msg_champ', autoScroll: false, action: 'submit'};
	champs_form = {
		nom: {alerte:'Please indicate your name'},
		email: {type:'mel', alerte:'Please indicate a valid email'},
		pays: {alerte:'Please indicate your country'},
		ville: {alerte:'Please indicate your city'},
		activite: {alerte:'Please indicate your current activity'},
		commentaire: {alerte:'Please indicate your comments'}              
	};
	return formVerif('frm', champs_form, param_form);
};

// --- Focus Input --- ///
var focusInput = function(){
	var input = $$('input[value!=""]');
	input.each( function(e,i){
		if(e.type=='text' || e.type=='password'){
			Event.observe(e, 'focus', function(evt){
				if(e.value==e.defaultValue)e.value='';
			});
			Event.observe(e, 'blur', function(evt){
				if(e.value=='')e.value=e.defaultValue;
			});
		}
	});
};
