 var oAjax = new Ajax();
 function getcontent(page) 
 {
 	var content = function(ContentResponse) 
 	{	
 		response=ContentResponse.split("##content##");
 		text=response[1];
 		menu=response[2];
 		pic=response[3];
		document.getElementById("content").innerHTML = text;
		document.getElementById("sub_content").innerHTML ="";
		document.getElementById("sub_menu").innerHTML = menu;
		document.getElementById("sub_menu").style.display = "block";
	    document.getElementById('wn2').style.height='90px';
	    var wndo1 = new dw_scrollObj('wn2', 'lyr2', 't2');
	    wndo1.setUpScrollControls('scrollLinks1');
	    if(pic)
	    {
	    	document.getElementById("main_pic").innerHTML = pic;
	    }

		
 		
    } // end 
	oAjax.doGet('manage_menu.php?data=' + page ,content, 'text');

	

 } // end function 
 
 
 
 function getsubcontent(page) 
 {
 	var content = function(ContentResponse) 
 	{	
 		
 		document.getElementById("sub_content").innerHTML = ContentResponse;

 		
 		
    } // end 
	oAjax.doGet('manage_sub_menu.php?data=' + page ,content, 'text');

	

 } // end function 
 
  function ImageFlip(image_array)
 {
 	var len = image_array.length;
 	var rand=Math.floor(Math.random()*len) ;
 	
 	document.getElementById("products_image").src="graphics/home/companies_box/" + image_array[rand] + ".jpg";
 	document.getElementById("products_link").href="index.php?page=companies&sub=" + image_array[rand];
 	
 }

 
 
