window.addEvent('domready', function() {
	var cont = $('imgcoeur');

	$('coeur').addEvent('mouseover', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		cont.morph('span#imgcoeur.over');
	});
	$('coeur').addEvent('mouseout', function(e) {
		e.stop();
		// Changes the element's style to .myClass defined in the CSS
		cont.morph('span#imgcoeur.classic');
	});
});