Cufon.replace('.stylized, .cufon');

window.addEvent('domready', function(){
	$("tellfriends_form").addEvent('submit', function(event){
		var div = Element('div',{
			'id' : 'recommend'
		});
		
		div.inject(document.body);
		div.position();
		
		new Overlay(document.body,{
			id: 'overlay',
			color: '#000',
			duration: 300,
			opacity: 0.7,
			onShow: function() {
				new Request.HTML({
					url:'/',
					update: "recommend"
				}).get({'module': 'recommend', 'action' : 'form', 'language': 'pl'});
				//new Fx.Tween($('recommend'), {'duration': 500}).start('opacity', 0, 1);
			}
		}).open();
		event.stop();
		
		return false;
	});
});
