 function menu_handler(){
 if($('upper_menu').style.display != 'none'){
 Effect.SlideUp('upper_menu',{ duration: 0.5 });
 }
 
 }
 
	
   window.onload = function() {
	  
       //Sortable.create('navbar',{tag:'li',constraint:'horizontal'});
	  // Sortable.create('leftnav',{tag:'li'});
	   //Sortable.create('showspace',{tag:'div',constraint:false});
	   //new Ajax.InPlaceEditor('brodtext','#',{formId: 'whatever',okText: 'Upper me!',cancelText: 'Never mind',rows:15,cols:40});
	   

   }
   
   function GetProducts(){
	   new Ajax.Request('ajaxAsp/product_list.asp', {
  method: 'get',
  onSuccess: function(transport) {
    $('content').innerHTML = transport.responseText;
    
    }
});
	   }
	   
	  
   
  