  jQuery(document).ready(function(){
	
	
if( jQuery('#validate_form').length > 0 )
{
	var action = jQuery('#validate_form').attr('action');
	jQuery('#' + 'validate_form').FormValidate({	phpFile: action + "/", ajax:false	});
}

if( jQuery('#notice').length > 0 )
{
	jQuery.jGrowl(jQuery('#notice').html(), { 
						 sticky: false,
						 closer: true
	});
					

}

						});
