/**
 * @author frederic.leroy
 */

 Ext.onReady(function() {

	var foc = Ext.DomQuery.selectNode('input[@fc]');
	if (foc) {
		Ext.get(foc).focus();
	}
	
	hideleftmenu();
	
	var el = Ext.get('main-error')
	if (el) {
		el.highlight("#FF6633", {duration: 2}); 
	}
 });