function init() {
	var peel = $('page-peel');
	var peelCorner = $('page-peel-corner');
	var peelMessage = $('page-peel-message');
	
	peel.observe('mouseenter', function(event)	{
		new Effect.Morph(peelCorner,{style:'width:190px; height:185px;',duration: 0.2,transition: Effect.Transitions.sinoidal});
		new Effect.Morph(peelMessage,{style:'width:172px; height:166px;',duration: 0.22,transition: Effect.Transitions.sinoidal});
	});
	peel.observe('mouseleave', function(event)	{
		new Effect.Morph(peelCorner,{style:'width:73px; height:71px;',duration: 0.42, delay:0.1,transition: Effect.Transitions.sinoidal});
		new Effect.Morph(peelMessage,{style:'width:66px; height:64px;',duration: 0.4, delay:0.1,transition: Effect.Transitions.sinoidal});
	});
	//new Effect.Morph(peelCorner,{style:'width:96px; height:94px;',duration: 0.2, delay:0.5,transition: Effect.Transitions.linear});
	//new Effect.Morph(peelMessage,{style:'width:87px; height:84px;',duration: 0.22, delay:0.5,transition: Effect.Transitions.linear});
	//new Effect.Morph(peelCorner,{style:'width:73px; height:71px;',duration: 0.33, delay:0.8,transition: Effect.Transitions.linear});
	//new Effect.Morph(peelMessage,{style:'width:66px; height:64px;',duration: 0.3, delay:0.8,transition: Effect.Transitions.linear});
};

document.observe('dom:loaded', function () { init(); });
