//jQuery
$(document).ready(function()
{
	//input name
	$('input[type="text"]#champ_texte , input[type="text"].rappel-input').focus(function() {
	    if (this.value == this.defaultValue){ 
	    	this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
		$(this).css({'color':'#000000','border':'1px solid #ef8429'});
    });
    $('input[type="text"]#champ_texte , input[type="text"].rappel-input').blur(function() {
	    if ($.trim(this.value) == ''){
	    	this.value = (this.defaultValue ? this.defaultValue : '');
		}
		$(this).css({'color':'#666666','border':'1px solid #999999'});
	});
	
});

$(function() {
  $('#content a.light').lightBox();
});

//$('#gallery').galleryView();

