// Rouge Vernis Make Up javascript document
// s.rossetti / contreforme sàrl / info@contreforme.ch / http://www.contreforme.ch
// this scripts use mootools javascript library http://www.mootools.net
// set external links to open in new window
function links_init(){
	$each($$('a'),function(e){
		// liens explicitement internes	OU liens relatifs
		if(e.get('rel') == 'external'){
			e.set('target','_blank');
		}
	});
	$$('img.popup').addEvent('click',function(ev){
		//milkbox.open({ gallery:this.get('rel') });
	});;
	
}
function gal_init(){
	$$('a.milkbox').addEvent('click',function(ev){
		var ev = new Event(ev).preventDefault();
		milkbox.showGallery({ gallery:this.get('rel') });
	});
}
// initialisation
function rvmu_init(){
	links_init();
	gal_init();
}
window.addEvent('domready',function(){
	rvmu_init();
});
