var mstate = new Array(0, 1, 1, 1);jQuery(function(){	jQuery('.title2').click(function() {		jQuery(this).toggleClass('title2_open');		var rel=jQuery(this).attr('rel');		if (mstate[rel]) {			mstate[rel] = 0;			jQuery('#section'+rel).slideUp("slow");		}		else {			mstate[rel] = 1;			jQuery('#section'+rel).slideDown("slow");		}	});});function close_lightwindow(){	jQuery('#lightbox').html("");	jQuery('#overlay').hide();	jQuery('#lightbox').hide();}jQuery("#contact_form").submit(function() {	s_form();});function s_form(){	jQuery('#lightbox').html("<center><B>Processing...</b></center>");	jQuery('#overlay').show();      				jQuery('#lightbox').show(); 	jQuery.post("/request", jQuery("#contact_form").serialize(),function(data){		jQuery('#lightbox').html(data);        Recaptcha.reload();		update_form();	});}