
Ext.onReady(function(){
	
	// Points to the location of the image header
	imgHeader = "<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href='/index.html'><img SRC='/images/byc_logo.png' ALT='BYC Home Page'></a>"

	// Create object to display the top graphic in
    var dispanel = new Ext.Panel({
        applyTo: 'menubar',
        layout: 'absolute',
        id: 'topPanel',
        baseCls: 'panel-bck',
        height: 140,
        autoWidth: true,
        html: imgHeader,
        items: [{
        	xtype:'panel',
        	border: false,
//        	baseCls: 'panel-low',
            baseCls: 'panel-bck',
            autoWidth: true,
        	y: 78,
            height: 50,
            bbar: mainMenu
        }]
    });
	
});
