jQuery.fn.inc=function(_1,_2,_3){
return this.each(function(){
var t=$(this);
var _5=function(_6){
t.html($.isFunction(_2)?_2(_6):_6);
if(_3){
_3();
}
};
if($.browser.msie){
do{
var f="inc"+(Math.round(Math.random()*999));
}while($("#"+f).length);
$("<iframe></iframe>").hide().attr("id",f).bind("readystatechange",function(){
if(this.readyState=="complete"){
_5(document.frames(f).document.body.innerHTML);
}
}).attr("src",_1).appendTo(document.body);
}else{
$.ajax({url:_1,complete:function(_8,_9){
if(_9=="success"){
_5(_8.responseText);
}
}});
}
});
};
$(function(){
$("[@class~=inc]").each(function(){
$(this).inc(unescape(this.className.replace(/.*inc:([^ ]+)( .*|$)/,"$1")));
});
});

