//jQuery
$(document).ready(function() {

	//errors
	$('.errors').click(function(){
		$(this).fadeOut(500, function(){ 
			$(this).remove(); 
		});
	});
	
	//input contact	
	$('input[type="text"]#cfNom , input[type="text"]#cfSociete , input[type="text"]#cfEmail , input[type="text"]#cfTel , input[type="text"]#cfObjet , textarea#cfMessage , input[type="text"]#antispam-code').focus(function() {
	    if (this.value == this.defaultValue){ 
	    	this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
		$(this).css({'border':'1px solid #FF621D'});
    });
    $('input[type="text"]#cfNom , input[type="text"]#cfSociete , input[type="text"]#cfEmail , input[type="text"]#cfTel , input[type="text"]#cfObjet , textarea#cfMessage , input[type="text"]#antispam-code').blur(function() {
	    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
		$(this).css({'border':'1px solid #CCCCCC'});
	});
	
});


