
window.addEvent('domready', function() {						 

	$$('input').addEvents({
		'focus': function(el){ this.addClass('hover');},
		'blur': function(el){ this.removeClass('hover');}
	});
	
	
	$('inputSearch').addEvents({
			
		'focus': function() {
			if(this.value=='Rechercher un produit') 
				this.value='';			
		},	
		'blur': function() {
			if(this.value=='') 
				this.value = 'Rechercher un produit';			
		}
			
	});	
	
	$$('.external').addEvent('click', function(ev){
		window.open(this.href); new Event(ev).stop(); return;
	});	
	
	ReMooz.assign('.remooz');
	
	
	if( $('search') ) {
	
		var customTips = $$('.imgTip');
		var toolTips = new Tips(customTips);
		
		//toolTips.attach('#img1');

	}
	
	
});

/* FONCTIONS */


