$$('.bloc_footer').addEvent('mouseenter', function() {
	//var orig = this.get('background');
	//this.highlight('#ddf', orig);
	
	new Fx.Morph(this, {duration: 'short'}).start({
	 //       'border-bottom': ['0px solid #E1D978', '10px solid #E1D978'],
	 //       'border-top': ['0px solid #000', '10px solid #000'],
	        'background-color': ['#2c2c2c', '#1c1c1c'],
	 //       'color': ['#A0A370', '#E1D978'],
	        'opacity': [1, 0.75]
	});
});

$$('.bloc_footer').addEvent('mouseleave', function() {
	//var orig = this.get('background');
	//this.highlight('#ddf', orig);
	
	new Fx.Morph(this, {duration: 'short'}).start({
	  //      'border-bottom': ['10px solid #E1D978', '0px solid #E1D978'],
	  //      'border-top': ['10px solid #000', '0px solid #000'],
	        'background-color': ['#1c1c1c', '#2c2c2c'],
	 //       'color': ['#A0A370', '#FDFAD8'],
	        'opacity': [0.75, 1]
	});
});

/*window.addEvent('domready', function() {
	settings = {
		tl: { radius: 10 },
		tr: { radius: 10 },
		bl: { radius: 10 },
		br: { radius: 10 },
		antiAlias: true,
		autoPad: true
	}
	var cornersObj = new ccCurvyCorners(settings, "bloc_footer");
	cornersObj.applyCornersToAll();
	
	new Typewriter({
	container: $('vide_id'),
	message: 'This is output from the typewriter class. This class is small but packs a good punch. Isn\'t MooTools great?',
	delay:100
	}).start();
});*/