// JavaScript Document

/*
// €
// --------------------------------------------------------------------------
// jQuery.custom.submit_email_support.js 
// by orangepointsolutions Ltd., www.orangepointsolutions.de
// --------------------------------------------------------------------------
*/

function submit_email_support( boxcontent ) {

var bc = boxcontent;
var form = bc.children("form");

var str = form.serialize();

	$.ajax({
		type: "POST",
		url: "ajaxforms/backend/submit_email_support.php",
		data: str,
		success: function(msg){
			bc.children("#response_email_support_handling").ajaxComplete(function(event, request, settings){

				if(msg == 'OK')
				{
					result = '<div class="notification_ok">Vielen Dank. Wir werden Deine Nachricht schnellstmöglich bearbeiten.</div>';
        			result += '<a href="javascript:;" onclick="$.fn.fancybox.close();" class="cancel">Schließen</a>';
				}
				else
				{
        			result += '<a href="javascript:;" onclick="$.fn.fancybox.close();" class="cancel">Schließen</a>';
				}

				form.hide();
				$(this).html(result);
				$(this).animate({ opacity: 'show' }, 'normal');

			});
		}

	});

	return false;

} // end of submit_email_support

// --- end of jQuery.custom.submit_email_support.js ---

