var HomePage = function(){
	return {
		init : function() {
			setTimeout("HomePage.showContactLink()",2000);	
		},
		showContactLink : function(){
			//alert("ok");
			Ext.get("contact").fadeIn({duration:2});
		}
	};
}();
Ext.onReady(HomePage.init,HomePage,true);