//Default settings for onLoad
$(document).ready(function () {
	//nyroModal settings
	$.fn.nyroModal.settings.bgColor = '#444';
 	$.fn.nyroModal.settings.minHeight = 30;
 	$.fn.nyroModal.settings.minWidth = 50;
});
//Custom wait function
$.fn.wait = function(time, type) {
	time = time || 1000;
	type = type || 'fx';
	return this.queue(type, function() {
		var self = this;
		setTimeout(function() {
			$(self).dequeue();
		}, time);
	});
};
$(document).ready(function() {

    	$('#account_add').ajaxForm({
        	target: '#account_add_result',
        	beforeSubmit: function() {
        		$('#account_add_result').empty();
        		$('#account_add_result').show();
        		$('#account_add_result').append('<img src="img/ajax-loader.gif" alt="O" style="margin-top:3px" /> Please wait...');
        	},
        	success: function() {	
        		$('#account_add_result').hide();
            		$('#account_add_result').fadeIn(750);
        	}
    	});
});