Ext.onReady(function(){
	setupCommon();
	
	jQuery.cookie('dispMainMenu', true, {path: '/'});
	
	jQuery('div#news a').click(function(e) {
		location.href = '/news/';
	});
	
	jQuery('div#blog a').click(function(e) {
		location.href = '/blog/';
	});
	
	jQuery('#docs a').click(function(e) {
		location.href = '/docs/';
	});
	
	jQuery('#video a').click(function(e) {
		location.href = '/video/';
	});
	
	jQuery('#form a').click(function(e) {
		location.href = '/form/';
	});
	
});

