var accForm;

window.addEvent('domready', function(){


		/*
		** MOUSEOVER TRANSPARENCY FADER
		** HoverFade(beginOpacityPercent, endOpacityPercent, milliseconds, classname);
		** defaults HoverFade(65, 100, 500, 'HoverFade');
		*/	
		HoverFade();


		/*
		** SUBMIT DATA IN SPECIFIED FORM FIELDS
		** calls AjaxSimple
		** sButtonID:  (string) id of the button you wish to activate this ajax call
		** sContentAreaID:  (string) id of the content area you want the ajax response to be loaded into
		** bFade:  (boolean) true if you want the content area to fade out and fade in
		** jsOnComplete:  (string) javascript code you want to execute after javascript call completes
		** sTargetURL:  (string) the url you are targetting with ajax
		** sFieldsClass:  (string) the classname you put on all the fields that you want to be submitted
		*/
		AjaxHash = false;
		jsOnComplete = "if (isValid('submitMKPLogin'))	AjaxSubmitFields('submitMKPLogin', 'AjaxContent', true, jsOnComplete, '/mkpdata.php', '.ajaxfield'); ";
		if (isValid('submitMKPLogin'))		AjaxSubmitFields('submitMKPLogin', 'AjaxContent', true, jsOnComplete, '/mkpdata.php', '.ajaxfield');



});

