/**
 * @package    JMyLife
 * @subpackage Components
 * @version    1.0.8
 * @copyright  2009 Jeff Channell
 * components/com_jmylife/assets/js/commentToggle.js
 * @license    GNU/GPL
 */
window.addEvent( 'load', function()
{
	/*
	 * ajax submission
	 */
	var f;
	if( f = $('comJMyLifeCommentForm') )
	{
		f.addEvent( 'submit', function( e )
		{
			new Event(e).stop();
			this.send({
				evalScripts: true,
				update: this,
				onComplete: function( response )
				{
				}
			});
		});
	}
});

