// JavaScript Document

Ext.onReady(function() {
                new Ext.ux.Menu('simple-horizontal-menu', {
                    transitionType: 'slide',
                    direction: 'horizontal', // default
                    delay: 0.2,              // default
                    autoWidth: true,         // default
                    transitionDuration: 0.3, // default
                    animate: true,           // default
                    currentClass: 'current'  // default
                });
                
            });
 
 function getContent(param1){
		//ajax to send request to php script	
		new Ajax.Updater('sub-content', 'content.php', {
 		parameters: {file:param1}
		});

	}
