var base_url = 'http://pierreluc.niksam.net/';

window.addEvent('domready', function() {
	
	new QuickBox(); 
	
	var thumbsObj = $$('#top_gallery a', '#bottom_gallery a');

	thumbsObj.set('opacity', 0.65);
	$$('#btn_mail a').set('opacity', 0);
	$$('#btn_mail a').setStyles('visibility', 'visible');
	
	thumbsObj.addEvent('mouseenter', function(e){
		this.fade(1);
	});
	
	thumbsObj.addEvent('mouseleave', function(e){
		this.fade(0.65);
	});
	
	/*var menuObj = $$('#menu a');
	
	menuObj.addEvent('mouseenter', function(e){
		this.tween('background-color', '#919191');
	});
	
	menuObj.addEvent('mouseleave', function(e){
		this.tween('background-color', '#d31727');
	});*/
	
	$(hoverBtn).tween('background-color', '#919191');
	
	$$('#last_li a').addEvent('click', function(e){
		$$('#btn_mail a').morph({
			'opacity': '1',
			'margin-left': '0px'
		});
		this.setStyle('background-color', '#919191');
	});
	
	/*$$('#btn_mail_hover').set('html', '<img src="http://www.pierrelucdufour.com//libraries/img/btn_mail.gif"" />');
	
	$$('#btn_mail_hover').addEvent('mouseenter', function(e){
		this.set('html', '<img src="http://www.pierrelucdufour.com//libraries/img/btn_mail_hover.gif" />');
	});
	
	$$('#btn_mail_hover').addEvent('mouseleave', function(e){
		this.set('html', '<img src="http://www.pierrelucdufour.com//libraries/img/btn_mail.gif"" />');
	});*/
	 
	
});



