
$j.fn.loadAjaxWebskin=function(config){var self=this;config=config||self.data("loadWebskinAjax")||{};config.showIndicator=config.showIndicator||false;config.indicatorText=config.indicatorText||'loading...';config.timeout=config.timeout||30;self.data("loadWebskinAjax",config);if(config.showIndicator==true){self.html('<div class="loading-indicator">'+config.indicatorText+'</div>');}
$j.ajax({type:"GET",url:config.action,cache:false,timeout:config.timeout*1000,success:function(msg){if(config.showIndicator==true){self.html('');}
self.html(msg);},cache:true});return self;}

