jQuery.noConflict();
jQuery(function($) {
	
//SIDEBAR LOGOS SOCIETES
$('#societes').innerfade({ animationtype: 'fade', speed: 'slow', timeout: 4000, type: 'sequence'}); 

$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});

	
//FORMULAIRE	
	$('.autoHide').focus(function() {
        if(this.value == this.defaultValue) {
            this.value = "";
        }
    }).blur(function() {
        if(!this.value.length) {
            this.value = this.defaultValue;
        }
    });


});
