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

	$('hideTextLink').set('opacity', 1).addEvents({
		mouseenter: function(){
			// This morphes the opacity and backgroundColor
			$('descriptionContainer').morph({
				'opacity': 0
			});
		},
		mouseleave: function(){
			// Morphes back to the original style
			$('descriptionContainer').morph({
				opacity: 1
			});
		}
	});

});

