/**** controls what to show in the form */

function showStuff(){
	var selected = $('#Contact')[0].value;
	if(selected == ""){
		hideAll();
	}else{
		hideAll();
		$("#for_"+selected).fadeIn('slow');
		$("#for_submit").show('slow');
	}
}

function hideAll(){
	$('#for_mail').hide(0);
	$('#for_email').hide(0);
  	$('#for_phone').hide(0);
  	$('#for_text').hide(0);
  	$('#for_submit').hide(0);
}