$(document).ready(function () {
	$('#logo').animate({'left':'+=236px'},700,null,slideMenu);
	$('#logo').click(function() { ThiXo.go({ id:'home' }); });
});

function slideMenu() {
	$('#menu').animate({'left':'+=1064px'},2000,null);
	$('#menu > img:not(:#menuLeft,#menuRight)').click(function() { ThiXo.go(this); });
}

/*
function loadFlash() {
	$('#torus').flash({ src:'/assets/swf/redshift_landscaper.swf', width:550, height:100, wmode:'transparent' });
}
*/

Ext.onReady(function() {
	mainWindow = new Ext.Window({
		layout:'fit',
		title:'ThiXo &middot; Home Page',
		closable:false,
		plain:true,
		border:false,
		autoScroll:true,
		x:16,
		y:128,
		width:600,
		height:350,
		items:[{
			xtype:'panel',
			title:'',
			autoLoad:'/assets/cnt/home/index.html'
		}]
	});
	mainWindow.show();
});