jQuery(document).ready(function() {
	jQuery('a.request_contact_link').attr("href", "#hidden_contact_form")
	// jQuery('a.inline').fancyZoom();
	jQuery('a.inline').facebox() 
	// jQuery('#contact_form_link').colorbox({inline:true, href:"#hidden_contact_form"});
	// jQuery('#contact_form_link').colorbox({href:"google.com"});
	
	if (jQuery('div.mmf-response-output.mmf-mail-sent-ok').size() > 0){
		window.location.href = "/contact-us/thank-you/";
	}
	if (window.location.href.match(/\#mmf/) && !window.location.href.match(/contact-us/)){
		jQuery('a.request_contact_link').trigger('click');
	}
	
});

// jQuery(document).ready(function() {
// 	jQuery('div.mmf > form').ajaxForm({
// 		beforeSubmit: mmfBeforeSubmit,
// 		dataType: 'json',
// 		success: mmfProcessJson
// 	});
// });
// 
// jQuery(document).ready(function() {
// 	jQuery('div.mmf > form').each(function(i, n) {
//     mmfToggleSubmit(jQuery(n));
//   });
// });