/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


var Main = new Class({
   initialize : function()
   {
        if($('myForm'))
            {
               var myFormValidation = new Validate('myForm',{
 
                });
            }

   }
});

$(window).addEvent('mydomready', function () {
    var _main = new Main();
});
