
jQuery(document).ready(function () {
	
	//jQuery("a[href^=http://]").not("a[href^=http://www.dansea.fr]").attr("target", "blank");
	//jQuery("a[href^=http://]").not("a[href^=http://www.dansea.fr]").attr("rel", "external");

	jQuery.fn.clean = function() {
		return this.focus(function() {
			if( this.value == this.defaultValue ) {
				this.value = "";
			}
		}).blur(function() {
			if( !this.value.length ) {
				this.value = this.defaultValue;
			}
		});
	};
	jQuery("#mot-clef").clean();
	jQuery("#newsletter-field").clean();
  
  
  jQuery('#brand-list ul').moodular({        
        speed: 5000,
        dispTimeout: 1
    });
});


