 var oAjax = new Ajax();
 function getsubcontent(page,lang) 
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		document.getElementById("bod_desc").innerHTML = ContentResponse;

 		
 		
    } // end 
	oAjax.doGet('manage_ajax.php?data=' + page + '&lang=' + lang ,content, 'text');

	

 } // end function 
 
 
 
 function showhide(id)
 {
 	if ($("#"+id).is(":hidden")) 
 	{
	 	$(".sub_menu").slideUp("slow");
	 	$(".menu_border").show();
	 	$("#"+id).slideDown("slow");
 		$("#border_"+id).hide();
 	}
 	else
 	{
 		$("#"+id).slideUp("slow");
 		$("#border_"+id).show();
 	}

 	 
 }
 
