jQuery(document).ready(function ($){		$("#video").hide();
		$("#videoemail").click(function (){
			$("#video").slideToggle("fast");
			//$(this).html("Record Later");
		});});



jQuery(document).ready(function ($){		$("#voice").hide();
		$("#voicemail").click(function (){
			$("#voice").toggle();
		});});

