/**
 * Schools
 *
 * for SchoolsController
 */
var Schools = {};

/**
 * functions to execute when document is ready
 *
 * only for SchoolsController
 *
 * @return void
 */
Schools.documentReady = function() {
    //Schools.filter();
	Schools.masks();
}


/**
 * Toggle future re (enable/disable)
 *
 * @return void
 */
Schools.masks = function() {
 try{
	$("form").validate();
   $("#SchoolPhone").mask("999-999-9999");
 }
 catch(err){

 }
}

/**
 * document ready
 *
 * @return void
 */
$(document).ready(function() {
    if (Croogo.params.controller == 'schools') {
        Schools.documentReady();
    }
});

