$ai={};
$ai.inc={
	js:function(path){
		$('head').appendDom([{
		  tagName  :'script',
		  type : 'text/javascript',
		  src : path
		}]);
	},
	css:function(path){
		$('head').appendDom([{
		  tagName : 'link',
		  rel : 'stylesheet',
		  type : 'text/css',
		  href : path
		}]);
	}
};