function downloadVoice(){
	//alert('test');
	jQuery(".download_voice > li > ul").hide();
	jQuery(".download_voice > li > a").click(function(){
		jQuery(this).attr('href', 'javascript:return;');
		//alert('salam');
		jQuery(this).parent().find('ul').toggle();
		//alert('salam');
		jQuery(this).focus();
	});
};
function showF(x){
	jQuery("#fBox").addClass("fBox-"+x);
	jQuery("#fBox").fadeIn();
	jQuery("#fBox").html(jQuery("#text-"+x).html());
	txt = jQuery("#text-"+x).html();
}
function hideF(x){
		jQuery("#fBox").hide();
		jQuery("#fBox").removeClass("fBox-"+x);
		jQuery("#fBox").html(" ");
}