
;(function($){
$.ui={
plugin:{
add:function(module,option,set){
var proto=$.ui[module].prototype;
for(var i in set){
proto.plugins[i]=proto.plugins[i]||[];
proto.plugins[i].push([option,set[i]]);
}
},
call:function(instance,name,args){
var set=instance.plugins[name];
if(!set){return;}
for(var i=0;i<set.length;i++){
if(instance.options[set[i][0]]){
set[i][1].apply(instance.element,args);
}
}
}
},
cssCache:{},
css:function(name){
if($.ui.cssCache[name]){return $.ui.cssCache[name];}
var tmp=$('<div class="ui-gen">').addClass(name).css({position:'absolute',top:'-5000px',left:'-5000px',display:'block'}).appendTo('body');
$.ui.cssCache[name]=!!(
(!(/auto|default/).test(tmp.css('cursor'))||(/^[1-9]/).test(tmp.css('height'))||(/^[1-9]/).test(tmp.css('width'))||
!(/none/).test(tmp.css('backgroundImage'))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(tmp.css('backgroundColor')))
);
try{$('body').get(0).removeChild(tmp.get(0));}catch(e){}
return $.ui.cssCache[name];
},
disableSelection:function(el){
$(el).attr('unselectable','on').css('MozUserSelect','none');
},
enableSelection:function(el){
$(el).attr('unselectable','off').css('MozUserSelect','');
},
hasScroll:function(e,a){
var scroll=/top/.test(a||"top")?'scrollTop':'scrollLeft',has=false;
if(e[scroll]>0)return true;e[scroll]=1;
has=e[scroll]>0?true:false;e[scroll]=0;
return has;
}
};
var _remove=$.fn.remove;
$.fn.remove=function(){
$("*",this).add(this).triggerHandler("remove");
return _remove.apply(this,arguments);
};
function getter(namespace,plugin,method){
var methods=$[namespace][plugin].getter||[];
methods=(typeof methods=="string"?methods.split(/,?\s+/):methods);
return($.inArray(method,methods)!=-1);
}
$.widget=function(name,prototype){
var namespace=name.split(".")[0];
name=name.split(".")[1];
$.fn[name]=function(options){
var isMethodCall=(typeof options=='string'),
args=Array.prototype.slice.call(arguments,1);
if(isMethodCall&&getter(namespace,name,options)){
var instance=$.data(this[0],name);
return(instance?instance[options].apply(instance,args)
:undefined);
}
return this.each(function(){
var instance=$.data(this,name);
if(isMethodCall&&instance&&$.isFunction(instance[options])){
instance[options].apply(instance,args);
}else if(!isMethodCall){
$.data(this,name,new $[namespace][name](this,options));
}
});
};
$[namespace][name]=function(element,options){
var self=this;
this.widgetName=name;
this.widgetBaseClass=namespace+'-'+name;
this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,options);
this.element=$(element)
.bind('setData.'+name,function(e,key,value){
return self.setData(key,value);
})
.bind('getData.'+name,function(e,key){
return self.getData(key);
})
.bind('remove',function(){
return self.destroy();
});
this.init();
};
$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);
};
$.widget.prototype={
init:function(){},
destroy:function(){
this.element.removeData(this.widgetName);
},
getData:function(key){
return this.options[key];
},
setData:function(key,value){
this.options[key]=value;
if(key=='disabled'){
this.element[value?'addClass':'removeClass'](
this.widgetBaseClass+'-disabled');
}
},
enable:function(){
this.setData('disabled',false);
},
disable:function(){
this.setData('disabled',true);
}
};
$.widget.defaults={
disabled:false
};
$.ui.mouse={
mouseInit:function(){
var self=this;
this.element.bind('mousedown.'+this.widgetName,function(e){
return self.mouseDown(e);
});
if($.browser.msie){
this._mouseUnselectable=this.element.attr('unselectable');
this.element.attr('unselectable','on');
}
this.started=false;
},
mouseDestroy:function(){
this.element.unbind('.'+this.widgetName);
($.browser.msie
&&this.element.attr('unselectable',this._mouseUnselectable));
},
mouseDown:function(e){
(this._mouseStarted&&this.mouseUp(e));
this._mouseDownEvent=e;
var self=this,
btnIsLeft=(e.which==1),
elIsCancel=(typeof this.options.cancel=="string"?$(e.target).parents().add(e.target).filter(this.options.cancel).length:false);
if(!btnIsLeft||elIsCancel||!this.mouseCapture(e)){
return true;
}
this._mouseDelayMet=!this.options.delay;
if(!this._mouseDelayMet){
this._mouseDelayTimer=setTimeout(function(){
self._mouseDelayMet=true;
},this.options.delay);
}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){
this._mouseStarted=(this.mouseStart(e)!==false);
if(!this._mouseStarted){
e.preventDefault();
return true;
}
}
this._mouseMoveDelegate=function(e){
return self.mouseMove(e);
};
this._mouseUpDelegate=function(e){
return self.mouseUp(e);
};
$(document)
.bind('mousemove.'+this.widgetName,this._mouseMoveDelegate)
.bind('mouseup.'+this.widgetName,this._mouseUpDelegate);
return false;
},
mouseMove:function(e){
if($.browser.msie&&!e.button){
return this.mouseUp(e);
}
if(this._mouseStarted){
this.mouseDrag(e);
return false;
}
if(this.mouseDistanceMet(e)&&this.mouseDelayMet(e)){
this._mouseStarted=
(this.mouseStart(this._mouseDownEvent,e)!==false);
(this._mouseStarted?this.mouseDrag(e):this.mouseUp(e));
}
return!this._mouseStarted;
},
mouseUp:function(e){
$(document)
.unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate)
.unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);
if(this._mouseStarted){
this._mouseStarted=false;
this.mouseStop(e);
}
return false;
},
mouseDistanceMet:function(e){
return(Math.max(
Math.abs(this._mouseDownEvent.pageX-e.pageX),
Math.abs(this._mouseDownEvent.pageY-e.pageY)
)>=this.options.distance
);
},
mouseDelayMet:function(e){
return this._mouseDelayMet;
},
mouseStart:function(e){},
mouseDrag:function(e){},
mouseStop:function(e){},
mouseCapture:function(e){return true;}
};
$.ui.mouse.defaults={
cancel:null,
distance:1,
delay:0
};
})(jQuery);

(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&/6.0/.test(navigator.userAgent)){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild)})}return this}})(jQuery);
