function close_lightwindow(){	jQuery('#lightbox').html("");	jQuery('#overlay').hide();	jQuery('#lightbox').hide();}$(document).ready(function () {jQuery("#contact_form").submit(function() {	s_form();});});function open_request(){	jQuery('#lightbox').html("<center><B>Processing...</b></center>");	jQuery('#overlay').show();      				jQuery('#lightbox').show(); 	jQuery('#lightbox').load('/request')}
function s_form(){	a=jQuery("#contact_form").serialize();	jQuery('#lightbox').html("<center><B>Processing...</b></center>");	jQuery('#overlay').show();      				jQuery('#lightbox').show(); 	jQuery.post("/request", a,function(data){		jQuery('#lightbox').html(data);		update_form();	});	}
function s_form2(){	a=jQuery("#contact_form2").serialize();	jQuery('#lightbox').html("<center><B>Processing...</b></center>");	jQuery('#overlay').show();      				jQuery('#lightbox').show(); 	jQuery.post("/request", a,function(data){		jQuery('#lightbox').html(data);		update_form();	});	}