//=============================================================================
// Utility
// These are primary writer function that can be used to build writers
//=============================================================================
// Write a popup (doesn't actually write in the document...)
//-----------------------------------------------------------------------------
function writePopup(url, width, height, wait, cookie_name, cookie_duration, probability, scrollbars) {
  // Default parameters
  if (arguments.length < 8) scrollbars = 0;
  if (arguments.length < 7) probability = 1; // Should be betwen 0 and 1
  if (arguments.length < 6) cookie_duration = null; // In days
  if (arguments.length < 5) cookie_name = 'popup';
  if (arguments.length < 4) wait = 0;

  // If cookie is present, popup must not be displayed
  if (document.cookie.indexOf(cookie_name) != -1)
  return;

  // If random (between 0 and 1) is over probability, popup must not be displayed
  if (Math.random() >= probability)
  return;

  // Build a cookie to prevent other display
  var c = cookie_name + '=1;Path=/';
  if (cookie_duration != null) {
    var d = new Date();
    d.setTime(d.getTime() + (cookie_duration*24*60*60*1000));
    c = c + ';expires=' + d.toGMTString();
  }
  document.cookie = c; 

  // Open popup
  setTimeout('popPromo(\"' + url + '\", ' + width + ', ' + height + ', \'' + scrollbars + '\')', Math.max(wait, 1));
}

// Helpers for popup (used by writePopup)
function popPromo(url, width, height) {
  win = window.open('', 'promo', 'toolbar=no,location=no,status=0,menubar=0,scrollbars=no,resizable=no,width=' + width + ',height=' + height);
  win.resizeTo(width, height);
  win.focus();
  win.location.href = url;
}

function popPromo(url, width, height, scrollbars) {
  win = window.open('', 'promo', 'toolbar=no,location=no,status=0,menubar=0,scrollbars=' + scrollbars + ',resizable=no,width=' + width + ',height=' + height);
  win.resizeTo(width, height);
  win.focus();
  win.location.href = url;
}


function ConfirmDisconnect(f){
	if(confirm("Souhaitez-vous vous déconnecter ?") == true ) 
	{ 
		window.location.href=f; 
	} 
}	
	
function popup(adresse) { 
	window.open(adresse,'_popup','resizable=no,scrollbars=yes,toolbar=no,menubar=no,personnalbar=no,width=550,height=450');
}  


//-----------------------------------------------------------------------------
// New Window
function popLargeWindow(url, width, height) {
  win = window.open('', 'Largepromo', 'toolbar=yes,location=yes,status=1,menubar=1,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
  win.resizeTo(width, height);
  win.focus();
  win.location.href = url;
}
//-----------------------------------------------------------------------------
// Helper for popup
function popLargePromo(url, width, height) {
  win = window.open('', 'Largepromo', 'toolbar=no,location=no,status=0,menubar=0,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
  win.resizeTo(width, height);
  win.focus();
  win.location.href = url;
}
//-----------------------------------------------------------------------------
// popup scroll
function popLargePromoScroll(url, width, height) {
  win = window.open('', 'Largepromo', 'toolbar=no,location=no,status=0,menubar=0,scrollbars=yes,resizable=yes,width=' + width + ',height=' + height);
  win.resizeTo(width, height);
  win.focus();
  win.location.href = url;
  win.scrollBy(0, 500);
}

//-----------------------------------------------------------------------------
// create non crawlable link
function link() {
   var l = '';
   for (i = 0; i < arguments.length; i++) { 
      l = l + arguments[i].replace(/\|/g,'/');
   }
   if (l.charAt(0)=='#') l = l.substring(1,l.length);
   window.open(l);
}
// create non crawlable link width option
function link_options() {
    var l = '';
    for (i = 0; i < arguments.length; i++) {
        l = l + arguments[i].replace(/\|/g, '/');
    }
    if (l.charAt(0) == '#') l = l.substring(1, l.length);
    return l;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// create non crawlable link non pop
function selflink() {
   var l  = '';
   for (i = 0; i < arguments.length; i++) { 
      l = l + arguments[i].replace(/\|/g,'/');
   }
   if (l.charAt(0)=='#') l = l.substring(1,l.length);
   window.location.href=l;//specialescape(l);
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// return url from non crawlable link
function unlink(str) {
	str = str.replace('javascript:void selflink(','');
	str = str.replace('javascript:void%20selflink(','');
	str = str.replace(')','');
	str = str.replace(/\|/g,'/');
	str = str.replace(/\'/g,'');
	str = str.replace(/\,/g,'');
   return str;
}
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------

	var nflinks = {
	
	_base16: "0A12B34C56D78E9F",

	encode: function (str)
	{
		var retour="";
		for(var i=0;i<str.length;i++)
		{
			var cc=str.charCodeAt(i);
			var ch=cc>>4;
			var cl=cc-(ch*16);
			retour+=this._base16[ch]+this._base16[cl];
		}
		return "Javascript:selflink('"+retour+"');";
	},

	decode: function (str)
	{
		var retour="";
		for(var i=0;i<str.length;i+=2)
		{
			var ch=this._base16.indexOf(str.charAt(i));
			var cl=this._base16.indexOf(str.charAt(i+1));
			retour+=String.fromCharCode((ch*16)+cl);
		}
		return retour;
	},
	
	init: function ()
	{
		var tagsA=document.getElementsByTagName("a");
		for(var i=0;i<tagsA.length;i++)
		{
			var linka=tagsA[i].href;
			if (linka.substring(0,21).toLowerCase() == "javascript:selflink('")
			{
				var r=linka.substring(21);
				var p=r.indexOf("'");
				if (p>0) { tagsA[i].href=this.decode(r.substring(0,p)); }
			}
		}
	}	
}
nflinks.init();

//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------




function poplink() {
     var l = '';
     var options = 'scrollbars,resizable, width=' + arguments[arguments.length-2] + ',height=' + arguments[arguments.length-1];
     for (i = 0; i < arguments.length - 2; i++) {
        l = l + arguments[i];
     }
   if (l.charAt(0)=='#') l = l.substring(1,l.length);
    win = window.open(specialescape(l), 'poplink', options);
  if (win != null && win != 'null' && win != 'undefined')
      win.focus();
  }
//-----------------------------------------------------------------------------
//-----------------------------------------------------------------------------
// escape some character
function specialescape(s) {
    // Don't treat cgi-style URLs because of all the '&' and likewise problems
    if (s.indexOf('?') == -1) {
        var sDomain = "";
        var sQuery  = s;
      
        // Strip off domain if exists (else we would encode the ':')
        // There might be port numbers ("http://some.domain.com:8080")!
        if (s.indexOf("://") != -1) {
            // 1st slash after the domain = beginning of query string
            var n = s.indexOf("/", s.indexOf("://")+3);
            if (n > -1) {
                sDomain = s.substring(0, n);
                sQuery  = s.substring(n);
            }
        }
        
        // Unescape (does nothing if it wasn't escaped, but if it was, we avoid double escaping)
        sQuery = unescape(sQuery);
        
        // Escape, so we don't rely on the browser to do this (some IE versions don't!)
        sQuery = escape(sQuery);
        
        // Rejoin with eventual domain
        s = sDomain + sQuery;
    }
    return s;   
}


// Before you reuse this script you may want to have your head examined
// 
// Copyright 1999 InsideDHTML.com, LLC.  
function doBlink() {
  // Blink, Blink, Blink...
  var blink = document.getElementsByTagName("BLINK");
  if (blink.length != 0) {
	for (var i=0; i < blink.length; i++)
		blink[i].style.visibility = blink[i].style.visibility == "" ? "hidden" : "" ;
	}
} 
function startBlink() {
  // Make sure it is IE4
  if (document.all)
    setInterval("doBlink()",500);
}
window.onload = startBlink;



	
function vider_cache(xmlhttp){
	var xmlhttp = xmlhttp;
	xmlhttp.setRequestHeader("Pragma","no-cache");
	xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
}

	
function getHTTPObject() 
{
	var xmlhttp=false;
    try
    {  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
	}catch (e)
    {try
		{xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        }catch (e){xmlhttp = false;}
    }
         
    if (!xmlhttp && typeof XMLHttpRequest != "undefined")
         {xmlhttp = new XMLHttpRequest();
         }

	return xmlhttp;	 
}


function ValidateFromIdentification(form){
    var bad_enter = new Array();
    var j         = 0;
    var y         = "";
    var missing_fields = new Array();
    var i              = 0;
    var x              = "";
	if (form.Mot_de_passe.value ==''){
		missing_fields[i] = "Mot de passe ";
        i = i + 1;
    }   
    if (form.email.value ==''){
		missing_fields[i] = "E-mail ";
        i = i + 1;
    } 
	// alert sending
	if ((i > 0) || (j >0)){
	    for (var i=0; i<missing_fields.length; i++)
		    var x = x + "\t" + missing_fields[i] + "\n";
		for (var j=0; j<bad_enter.length; j++)
		    var y = y + "\t" + bad_enter[j] + "\n";
		var message = "";
		if (x!="") { message = "Les informations suivantes sont manquantes :\n" + x; }
		if ((x!="") && (y!="")) { message = message + "\n"; }
		if (y!="") { message = message + "Les informations suivantes sont incorrectes :\n" + y; }
		message =  message + "\n\n Si vous ne vous rappelez pas de votre mot de passe \n cliquez sur le lien \"Mot de passe oublié?\""
		alert(message);
		return(false);
	}
	// for fast_app_accept
	return(true);
}


function Simplifier(s,sans_espace) {
s = s = s.replace(/Á/g, "A");
s = s.replace(/Â/g, "A");
s = s.replace(/Ã/g, "A");
s = s.replace(/Ä/g, "A");
s = s.replace(/Å/g, "A");
s = s.replace(/Æ/g, "AE");
s = s.replace(/Ç/g, "C");
s = s.replace(/È/g, "E");
s = s.replace(/É/g, "E");
s = s.replace(/Ê/g, "E");
s = s.replace(/Ë/g, "E");
s = s.replace(/Ì/g, "I");
s = s.replace(/Î/g, "I");
s = s.replace(/Ï/g, "I");
s = s.replace(/Ð/g, "D");
s = s.replace(/Ñ/g, "N");
s = s.replace(/Ò/g, "O");
s = s.replace(/Ó/g, "O");
s = s.replace(/Ô/g, "O");
s = s.replace(/Ö/g, "O");
s = s.replace(/Õ/g, "O");
s = s.replace(/Ø/g, "O");
s = s.replace(/Ù/g, "U");
s = s.replace(/Ú/g, "U");
s = s.replace(/Û/g, "U");
s = s.replace(/Ü/g, "U");
s = s.replace(/Ý/g, "Y");
s = s.replace(/Ÿ/g, "Y");
s = s.replace(/ß/g, "S");
s = s.replace(/è/g, "e");
s = s.replace(/é/g, "e");
s = s.replace(/&#231;/g, "c");
s = s.replace(/&#231;/g, "c");
s = s.replace(/&#199;/g, "C");
s = s.replace(/&#224;/g, "a");
s = s.replace(/&#225;/g, "a");
s = s.replace(/&#226;/g, "a");
s = s.replace(/&#227;/g, "a");
s = s.replace(/&#228;/g, "a");
s = s.replace(/&#229;/g, "a");
s = s.replace(/&#232;/g, "e");
s = s.replace(/&#233;/g, "e");
s = s.replace(/&#234;/g, "e");
s = s.replace(/&#235;/g, "e");
s = s.replace(/&#236;/g, "i");
s = s.replace(/&#237;/g, "i");
s = s.replace(/&#238;/g, "i");
s = s.replace(/&#239;/g, "i");
s = s.replace(/&#242;/g, "o");
s = s.replace(/&#243;/g, "o");
s = s.replace(/&#244;/g, "o");
s = s.replace(/&#245;/g, "o");
s = s.replace(/&#246;/g, "o");
s = s.replace(/&#249;/g, "u");
s = s.replace(/&#250;/g, "u");
s = s.replace(/&#251;/g, "u");
s = s.replace(/&#252;/g, "u");
s = s.replace(/&#192;/g,"A");
s = s.replace(/&#193;/g,"A");
s = s.replace(/&#194;/g,"A");
s = s.replace(/&#195;/g,"A");
s = s.replace(/&#196;/g,"A");
s = s.replace(/&#197;/g,"A");
s = s.replace(/&#200;/g,"E");
s = s.replace(/&#201;/g,"E");
s = s.replace(/&#202;/g,"E");
s = s.replace(/&#203;/g,"E");
s = s.replace(/&#204;/g,"I");
s = s.replace(/&#205;/g,"I");
s = s.replace(/&#206;/g,"I");
s = s.replace(/&#207;/g,"I");
s = s.replace(/&#210;/g,"O");
s = s.replace(/&#211;/g,"O");
s = s.replace(/&#212;/g,"O");
s = s.replace(/&#213;/g,"O");
s = s.replace(/&#214;/g,"O");
s = s.replace(/&#217;/g,"U");
s = s.replace(/&#218;/g,"U");
s = s.replace(/&#219;/g,"U");
s = s.replace(/&#220;/g,"U");
s = s.replace(/ê/g, "e");
s = s.replace(/ë/g, "e");
s = s.replace(/à/g, "a");
s = s.replace(/á/g, "a");
s = s.replace(/â/g, "a");
s = s.replace(/ã/g, "a");
s = s.replace(/ä/g, "a");
s = s.replace(/å/g, "a");
s = s.replace(/æ/g, "ae");
s = s.replace(/œ/g, "oe");
s = s.replace(/ç/g, "c");
s = s.replace(/ì/g, "i");
s = s.replace(/í/g, "i");
s = s.replace(/î/g, "i");
s = s.replace(/ï/g, "i");
s = s.replace(/ò/g, "o");
s = s.replace(/ó/g, "o");
s = s.replace(/ô/g, "o");
s = s.replace(/õ/g, "o");
s = s.replace(/ö/g, "o");
s = s.replace(/ù/g, "u");
s = s.replace(/ú/g, "u");
s = s.replace(/û/g, "u");
s = s.replace(/ü/g, "u");
s = s.replace(/ý/g, "y");
s = s.replace(/ÿ/g, "y");


 	if (sans_espace) {
		s = s.replace(/'/g, " ");
		s = s.replace(/’/g, " ");
		s = s.replace(/ /g, "-");
		s = s.replace(/[.]/g, "");
		s = s.replace(/[?]/g, "");
		s = s.replace(/[!]/g, "");
		s = s.replace(/,/g, "");
		s = s.replace(/;/g, "");
		s = s.replace(/:/g, "");
		s = s.replace(/--/g, "-");
	}


//alert(s);

return s;

}




function affiche_espace_perso(element,onglet,rubrique,page) {
	 //alert(element);
	 var xmlhttp = getHTTPObject();
  	 var element1 = document.getElementById(element);
	 if (element1) {
		 element1.innerHTML = '';
		 var D = new Date();
		 xmlhttp.open('GET', '/v2/includes/common/espace_perso.asp?onglet='+onglet+'&rubrique='+rubrique+'&page='+page+'&'+D.getTime(), true);	
		 vider_cache(xmlhttp);
		 xmlhttp.onreadystatechange = function() {
			if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
						 var reponse = xmlhttp.responseText;
			   //if (reponse.indexOf('boiteNavGauche')>=0) {
					//il y a quelque chose dans le caddie
				   element1.style.display="block";
				   element1.innerHTML = reponse;
				/*}
			   else
			   {
					element1.style.display="none";
				}*/
			}
			else
			{
			}
		}
		xmlhttp.send(null); 
	}
}



autoriseCaracteres = function (texte_saisi, champ_value, type) {	
		var longueur = texte_saisi.length;
		var expression_reg;
		var masque;
		switch (type) {
			case "chiffres":
				masque = "0-9"
				break;
			case "lettresTirets":
				masque = "a-zA-Z\-";
				break;
			case "chiffresLettres":
				masque = "a-zA-Z0-9";
				break;
			case "chiffresLettresTirets":
				masque = "a-zA-Z0-9\-";
				break;
			default:
		
		}
		
		expression_reg = new RegExp("["+masque+"]{"+longueur+"}","g");
		
		if (!expression_reg.test(texte_saisi)) {
			document.getElementById(champ_value).value=texte_saisi.replace(expression_reg.compile("([^"+masque+"])+"), "");
		}

}

function lien_tracke(lien,partenaire,emplacement,campagne,domaine) {
	var str;
	str = "http://www.cadeaux.com/track.asp?partner="+partenaire+"&emplacement="+emplacement+"&url=";
	str += lien.href;
	str += "?utm_source="+partenaire+"%26utm_medium="+emplacement+"%26utm_campaign="+campagne;
	lien.href = str
	lien.target = "_blank";
	lien.onclick = null;
}

function show_bloc_sante(id,element){
	//blocs = document.getElementsByClassName("bloc_articles");
	blocs = $(".bloc_articles");
	blocsCount = blocs.length;
	//alert("Mouahah");
	for ( var t = 0; t < blocsCount; t++){
		blocs[t].style.display = "none";
		document.getElementById("onglet-"+id).className = "onglet"
		
	}
	//blocs = document.getElementsByClassName("onglet");
	blocs = $(".onglet");
	blocsCount = blocs.length;
	for ( var t = 0; t < blocsCount; t++){
		if(blocs[t].id == "menu-"+id){
			blocs[t].className = "onglet on";
		}else{
			blocs[t].className = "onglet";
		}
	}
	document.getElementById(id).style.display = "block";
	document.getElementById("onglet-"+id).className += " on";
	
}/**
 * FlashObject v1.3d: Flash detection and embed - http://blog.deconcept.com/flashobject/
 *
 * FlashObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
if(typeof com=="undefined"){var com=new Object();}
if(typeof com.deconcept=="undefined"){com.deconcept=new Object();}
if(typeof com.deconcept.util=="undefined"){com.deconcept.util=new Object();}
if(typeof com.deconcept.FlashObjectUtil=="undefined"){com.deconcept.FlashObjectUtil=new Object();}
com.deconcept.FlashObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
	vvh=_5;
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=com.deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
this.useExpressInstall=_7;
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new com.deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=com.deconcept.FlashObjectUtil.getPlayerVersion(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}
};
com.deconcept.FlashObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},createParamTag:function(n,v){
var p=document.createElement("param");
p.setAttribute("name",n);
p.setAttribute("value",v);
return p;
},getVariablePairs:function(){
var _19=new Array();
var key;
var _1b=this.getVariables();
for(key in _1b){_19.push(key+"="+_1b[key]);}
return _19;
},getFlashHTML:function(){
var _1c="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
_1c="<embed wmode=\"transparent\" type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_1c+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1d=this.getParams();
for(var key in _1d){_1c+=[key]+"=\""+_1d[key]+"\" ";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_1c+="flashvars=\""+_1f+"\"";}
_1c+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_1c="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_1c+="<param name=\"wmode\" value=\"transparent\" /><param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _20=this.getParams();
for(var key in _20){_1c+="<param name=\""+key+"\" value=\""+_20[key]+"\" />";}
var _22=this.getVariablePairs().join("&");
if(_22.length>0){_1c+="<param name=\"flashvars\" value=\""+_22+"\" />";
}_1c+="</object>";}
return _1c;
},write:function(_23){
if(this.useExpressInstall){
var _24=new com.deconcept.PlayerVersion([vvh,0,0]);
if(this.installedVer.versionIsValid(_24)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}
}else{this.setAttribute("doExpressInstall",false);}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _23=="string")?document.getElementById(_23):_23;
n.innerHTML=this.getFlashHTML();
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}}};
com.deconcept.FlashObjectUtil.getPlayerVersion=function(_26,_27){
var _28=new com.deconcept.PlayerVersion(0,0,0);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_28=new com.deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{
try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
for(var i=3;axo!=null;i++){
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
_28=new com.deconcept.PlayerVersion([i,0,0]);}}
catch(e){}
if(_26&&_28.major>_26.major){return _28;}
if(!_26||((_26.minor!=0||_26.rev!=0)&&_28.major==_26.major)||_28.major!=6||_27){
try{
_28=new com.deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
}catch(e){}}}
return _28;
};

com.deconcept.FlashObject2=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
	vvh=_5;
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=com.deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
this.useExpressInstall=_7;
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new com.deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=com.deconcept.FlashObjectUtil.getPlayerVersion(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}
};
com.deconcept.FlashObject2.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},createParamTag:function(n,v){
var p=document.createElement("param");
p.setAttribute("name",n);
p.setAttribute("value",v);
return p;
},getVariablePairs:function(){
var _19=new Array();
var key;
var _1b=this.getVariables();
for(key in _1b){_19.push(key+"="+_1b[key]);}
return _19;
},getFlashHTML:function(){
var _1c="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
_1c="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_1c+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1d=this.getParams();
for(var key in _1d){_1c+=[key]+"=\""+_1d[key]+"\" ";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_1c+="flashvars=\""+_1f+"\"";}
_1c+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_1c="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_1c+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _20=this.getParams();
for(var key in _20){_1c+="<param name=\""+key+"\" value=\""+_20[key]+"\" />";}
var _22=this.getVariablePairs().join("&");
if(_22.length>0){_1c+="<param name=\"flashvars\" value=\""+_22+"\" />";
}_1c+="</object>";}
return _1c;
},write:function(_23){
if(this.useExpressInstall){
var _24=new com.deconcept.PlayerVersion([vvh,0,0]);
if(this.installedVer.versionIsValid(_24)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}
}else{this.setAttribute("doExpressInstall",false);}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _23=="string")?document.getElementById(_23):_23;
n.innerHTML=this.getFlashHTML();
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}}};


com.deconcept.PlayerVersion=function(_2c){
this.major=parseInt(_2c[0])||0;
this.minor=parseInt(_2c[1])||0;
this.rev=parseInt(_2c[2])||0;
};
com.deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){return false;}
return true;
};
com.deconcept.util={getRequestParameter:function(_2e){
var q=document.location.search||document.location.hash;
if(q){var _30=q.indexOf(_2e+"=");
var _31=(q.indexOf("&",_30)>-1)?q.indexOf("&",_30):q.length;
if(q.length>1&&_30>-1){
return q.substring(q.indexOf("=",_30)+1,_31);}}return "";
},removeChildren:function(n){
while(n.hasChildNodes()){
n.removeChild(n.firstChild);}}};
if(Array.prototype.push==null){
Array.prototype.push=function(_33){
this[this.length]=_33;
return this.length;};}
var getQueryParamValue=com.deconcept.util.getRequestParameter;
var FlashObject=com.deconcept.FlashObject;
var FlashObject2=com.deconcept.FlashObject2;

function VersionNavigateur(Netscape, Explorer) {
	if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') || (navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))
		return true;
	else
		return false;
}

function Effet_on(Image, Opacite) {
	eval(Image + ".filters.alpha.opacity=" + Opacite)
}
function Effet_off(Image, Opacite) {
	eval(Image + ".filters.alpha.opacity=" + Opacite)
}

// Images transparentes

var first_opac = 60;
var sec_opac =100;
var opac = first_opac;
var speed = 6;
var si;
var cleared = true;

function showimage(what,doshow) {

if (document.all) {
  cleared = false;
  (doshow) ? opac+=speed : opac-=speed;
  eval(what+".filters.alpha.opacity="+opac);
  if (opac <= first_opac || opac >= sec_opac) {
    clearInterval(si);
    cleared = true;
  }
}

if (document.layers) clearInterval(si);
}

function ClearInt() {
if (!cleared) clearInterval(si);
}


/*	
SCRIPT EDITE SUR L'EDITEUR JAVACSRIPT
http://www.editeurjavascript.com

Merci à lord Gunthar
http://www.topweb.cc
*/

window.onload = function() {
    domok = document.getElementById;
	
	if (domok) {
		skn = document.getElementById("topdecklink").style;
		if(navigator.appName.substring(0,3) == "Net") document.captureEvents(Event.MOUSEMOVE);
		if (navigator.appVersion.indexOf("Mac") == -1) document.onmousemove = get_mouse;
	}
}





function poplink(msg,couleur_encadrement,couleur_fond) {
	//if (navigator.appVersion.indexOf("Mac") != -1) {
	//	return true;
	//} else {
		var content ="<table border='0' cellpadding='0' cellspacing='0' bgcolor='" + couleur_encadrement + "' width='130'><tr><td><table width='100%' border='0' cellpadding='2' cellspacing='1'><tr><td bgcolor='" + couleur_fond + "' align='justify' class=popup>"+msg+"</td></tr></table></td></tr></table>";
		if (domok) {
		  	document.getElementById("topdecklink").innerHTML = content;
		  	skn.visibility = "visible";
			skn.display = "inline";
	  	}
	//}
}

function poplink2(msg,class_encadrement,class_fond) {
	//if (navigator.appVersion.indexOf("Mac") != -1) {
	//	return true;
	//} else {
		var content ="<table border='0' cellpadding='0' cellspacing='0' class='" + class_encadrement + "' width='130'><tr><td><table width='100%' border='0' cellpadding='2' cellspacing='1'><tr><td class='" + class_fond + "' align='justify' class=popup>"+msg+"</td></tr></table></td></tr></table>";
		if (domok) {
		  	document.getElementById("topdecklink").innerHTML = content;
		  	skn.visibility = "visible";
			skn.display = "inline";
	  	}
	//}
}

function get_mouse(e) {
	var x = (navigator.appName.substring(0,3) == "Net") ? e.pageX : event.x+document.body.scrollLeft;
	var y = (navigator.appName.substring(0,3) == "Net") ? e.pageY : event.y+document.body.scrollTop;
	skn.left = x - 60;
	skn.top = y+20;
}

function killlink() {
	if (domok) 
	{
		skn.visibility = "hidden";
		skn.display = "none";
	}
		
}

function popup(file,tx,ty) {
 	myWindow= open(file, "newWindow", "width="+tx+",height="+ty+",menubar=no,resizable=no,scrollbars=yes,status=no,toolbar=no");
}

function doublequotesetting(initialstring) {
    var quotemodel = /'/g;
    var doublequotemodel = /\"/g;
    var finalstring;
    finalstring = initialstring.replace(quotemodel, "''");
    finalstring = finalstring.replace(doublequotemodel, "\"\"");
    return (finalstring);
}

function formatinputstring(initialstring, regularexpression) {
    var quotemodel = /'/g;
    var finalstring;
    finalstring = initialstring.replace(regularexpression, "_");
    // finalstring = finalstring.replace(quotemodel,"''");
    return (finalstring);
}//jQuery JavaScript Library v1.6.2
(function(a,b){function cv(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cs(a){if(!cg[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){ch||(ch=c.createElement("iframe"),ch.frameBorder=ch.width=ch.height=0),b.appendChild(ch);if(!ci||!ch.createElement)ci=(ch.contentWindow||ch.contentDocument).document,ci.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),ci.close();d=ci.createElement(a),ci.body.appendChild(d),e=f.css(d,"display"),b.removeChild(ch)}cg[a]=e}return cg[a]}function cr(a,b){var c={};f.each(cm.concat.apply([],cm.slice(0,b)),function(){c[this]=a});return c}function cq(){cn=b}function cp(){setTimeout(cq,0);return cn=f.now()}function cf(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ce(){try{return new a.XMLHttpRequest}catch(b){}}function b$(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function bZ(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function bY(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bC.test(a)?d(a,e):bY(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)bY(a+"["+e+"]",b[e],c,d);else d(a,b)}function bX(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bR,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=bX(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=bX(a,c,d,e,"*",g));return l}function bW(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bN),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bA(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bv:bw;if(d>0){c!=="border"&&f.each(e,function(){c||(d-=parseFloat(f.css(a,"padding"+this))||0),c==="margin"?d+=parseFloat(f.css(a,c+this))||0:d-=parseFloat(f.css(a,"border"+this+"Width"))||0});return d+"px"}d=bx(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0,c&&f.each(e,function(){d+=parseFloat(f.css(a,"padding"+this))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+this+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+this))||0)});return d+"px"}function bm(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(be,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bl(a){f.nodeName(a,"input")?bk(a):"getElementsByTagName"in a&&f.grep(a.getElementsByTagName("input"),bk)}function bk(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bj(a){return"getElementsByTagName"in a?a.getElementsByTagName("*"):"querySelectorAll"in a?a.querySelectorAll("*"):[]}function bi(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bh(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c=f.expando,d=f.data(a),e=f.data(b,d);if(d=d[c]){var g=d.events;e=e[c]=f.extend({},d);if(g){delete e.handle,e.events={};for(var h in g)for(var i=0,j=g[h].length;i<j;i++)f.event.add(b,h+(g[h][i].namespace?".":"")+g[h][i].namespace,g[h][i],g[h][i].data)}}}}function bg(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function W(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(R.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function V(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function N(a,b){return(a&&a!=="*"?a+".":"")+b.replace(z,"`").replace(A,"&")}function M(a){var b,c,d,e,g,h,i,j,k,l,m,n,o,p=[],q=[],r=f._data(this,"events");if(!(a.liveFired===this||!r||!r.live||a.target.disabled||a.button&&a.type==="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var s=r.live.slice(0);for(i=0;i<s.length;i++)g=s[i],g.origType.replace(x,"")===a.type?q.push(g.selector):s.splice(i--,1);e=f(a.target).closest(q,a.currentTarget);for(j=0,k=e.length;j<k;j++){m=e[j];for(i=0;i<s.length;i++){g=s[i];if(m.selector===g.selector&&(!n||n.test(g.namespace))&&!m.elem.disabled){h=m.elem,d=null;if(g.preType==="mouseenter"||g.preType==="mouseleave")a.type=g.preType,d=f(a.relatedTarget).closest(g.selector)[0],d&&f.contains(h,d)&&(d=h);(!d||d!==h)&&p.push({elem:h,handleObj:g,level:m.level})}}}for(j=0,k=p.length;j<k;j++){e=p[j];if(c&&e.level>c)break;a.currentTarget=e.elem,a.data=e.handleObj.data,a.handleObj=e.handleObj,o=e.handleObj.origHandler.apply(e.elem,arguments);if(o===!1||a.isPropagationStopped()){c=e.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function K(a,c,d){var e=f.extend({},d[0]);e.type=a,e.originalEvent={},e.liveFired=b,f.event.handle.call(c,e),e.isDefaultPrevented()&&d[0].preventDefault()}function E(){return!0}function D(){return!1}function m(a,c,d){var e=c+"defer",g=c+"queue",h=c+"mark",i=f.data(a,e,b,!0);i&&(d==="queue"||!f.data(a,g,b,!0))&&(d==="mark"||!f.data(a,h,b,!0))&&setTimeout(function(){!f.data(a,g,b,!0)&&!f.data(a,h,b,!0)&&(f.removeData(a,e,!0),i.resolve())},0)}function l(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function k(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(j,"$1-$2").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNaN(d)?i.test(d)?f.parseJSON(d):d:parseFloat(d)}catch(g){}f.data(a,c,d)}else d=b}return d}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/\d/,n=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,o=/^[\],:{}\s]*$/,p=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,q=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,r=/(?:^|:|,)(?:\s*\[)+/g,s=/(webkit)[ \/]([\w.]+)/,t=/(opera)(?:.*version)?[ \/]([\w.]+)/,u=/(msie) ([\w.]+)/,v=/(mozilla)(?:.*? rv:([\w.]+))?/,w=/-([a-z])/ig,x=function(a,b){return b.toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=n.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.6.2",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.resolveWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!A){A=e._Deferred();if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNaN:function(a){return a==null||!m.test(a)||isNaN(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a);return c===b||D.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(o.test(b.replace(p,"@").replace(q,"]").replace(r,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(b,c,d){a.DOMParser?(d=new DOMParser,c=d.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),d=c.documentElement,(!d||!d.nodeName||d.nodeName==="parsererror")&&e.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b){if(H)return H.call(b,a);for(var c=0,d=b.length;c<d;c++)if(b[c]===a)return c;return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=s.exec(a)||t.exec(a)||u.exec(a)||a.indexOf("compatible")<0&&v.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test("Â ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g="done fail isResolved isRejected promise then always pipe".split(" "),h=[].slice;f.extend({_Deferred:function(){var a=[],b,c,d,e={done:function(){if(!d){var c=arguments,g,h,i,j,k;b&&(k=b,b=0);for(g=0,h=c.length;g<h;g++)i=c[g],j=f.type(i),j==="array"?e.done.apply(e,i):j==="function"&&a.push(i);k&&e.resolveWith(k[0],k[1])}return this},resolveWith:function(e,f){if(!d&&!b&&!c){f=f||[],c=1;try{while(a[0])a.shift().apply(e,f)}finally{b=[e,f],c=0}}return this},resolve:function(){e.resolveWith(this,arguments);return this},isResolved:function(){return!!c||!!b},cancel:function(){d=1,a=[];return this}};return e},Deferred:function(a){var b=f._Deferred(),c=f._Deferred(),d;f.extend(b,{then:function(a,c){b.done(a).fail(c);return this},always:function(){return b.done.apply(b,arguments).fail.apply(this,arguments)},fail:c.done,rejectWith:c.resolveWith,reject:c.resolve,isRejected:c.isResolved,pipe:function(a,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[c,"reject"]},function(a,c){var e=c[0],g=c[1],h;f.isFunction(e)?b[a](function(){h=e.apply(this,arguments),h&&f.isFunction(h.promise)?h.promise().then(d.resolve,d.reject):d[g](h)}):b[a](d[g])})}).promise()},promise:function(a){if(a==null){if(d)return d;d=a={}}var c=g.length;while(c--)a[g[c]]=b[g[c]];return a}}),b.done(c.cancel).fail(b.cancel),delete b.cancel,a&&a.call(b,b);return b},when:function(a){function i(a){return function(c){b[a]=arguments.length>1?h.call(arguments,0):c,--e||g.resolveWith(g,h.call(b,0))}}var b=arguments,c=0,d=b.length,e=d,g=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred();if(d>1){for(;c<d;c++)b[c]&&f.isFunction(b[c].promise)?b[c].promise().then(i(c),g.reject):--e;e||g.resolveWith(g,b)}else g!==a&&g.resolveWith(g,d?[a]:[]);return g.promise()}}),f.support=function(){var a=c.createElement("div"),b=c.documentElement,d,e,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u;a.setAttribute("className","t"),a.innerHTML="   <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=a.getElementsByTagName("*"),e=a.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=a.getElementsByTagName("input")[0],k={leadingWhitespace:a.firstChild.nodeType===3,tbody:!a.getElementsByTagName("tbody").length,htmlSerialize:!!a.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55$/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:a.className!=="t",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,k.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,k.optDisabled=!h.disabled;try{delete a.test}catch(v){k.deleteExpando=!1}!a.addEventListener&&a.attachEvent&&a.fireEvent&&(a.attachEvent("onclick",function(){k.noCloneEvent=!1}),a.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),k.radioValue=i.value==="t",i.setAttribute("checked","checked"),a.appendChild(i),l=c.createDocumentFragment(),l.appendChild(a.firstChild),k.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,a.innerHTML="",a.style.width=a.style.paddingLeft="1px",m=c.getElementsByTagName("body")[0],o=c.createElement(m?"div":"body"),p={visibility:"hidden",width:0,height:0,border:0,margin:0},m&&f.extend(p,{position:"absolute",left:-1e3,top:-1e3});for(t in p)o.style[t]=p[t];o.appendChild(a),n=m||b,n.insertBefore(o,n.firstChild),k.appendChecked=i.checked,k.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,k.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="<div style='width:4px;'></div>",k.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",q=a.getElementsByTagName("td"),u=q[0].offsetHeight===0,q[0].style.display="",q[1].style.display="none",k.reliableHiddenOffsets=u&&q[0].offsetHeight===0,a.innerHTML="",c.defaultView&&c.defaultView.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",a.appendChild(j),k.reliableMarginRight=(parseInt((c.defaultView.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0),o.innerHTML="",n.removeChild(o);if(a.attachEvent)for(t in{submit:1,change:1,focusin:1})s="on"+t,u=s in a,u||(a.setAttribute(s,"return;"),u=typeof a[s]=="function"),k[t+"Bubbles"]=u;o=l=g=h=m=j=a=i=null;return k}(),f.boxModel=f.support.boxModel;var i=/^(?:\{.*\}|\[.*\])$/,j=/([a-z])([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!l(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g=f.expando,h=typeof c=="string",i,j=a.nodeType,k=j?f.cache:a,l=j?a[f.expando]:a[f.expando]&&f.expando;if((!l||e&&l&&!k[l][g])&&h&&d===b)return;l||(j?a[f.expando]=l=++f.uuid:l=f.expando),k[l]||(k[l]={},j||(k[l].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?k[l][g]=f.extend(k[l][g],c):k[l]=f.extend(k[l],c);i=k[l],e&&(i[g]||(i[g]={}),i=i[g]),d!==b&&(i[f.camelCase(c)]=d);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[f.camelCase(c)]||i[c]:i}},removeData:function(b,c,d){if(!!f.acceptData(b)){var e=f.expando,g=b.nodeType,h=g?f.cache:b,i=g?b[f.expando]:f.expando;if(!h[i])return;if(c){var j=d?h[i][e]:h[i];if(j){delete j[c];if(!l(j))return}}if(d){delete h[i][e];if(!l(h[i]))return}var k=h[i][e];f.support.deleteExpando||h!=a?delete h[i]:h[i]=null,k?(h[i]={},g||(h[i].toJSON=f.noop),h[i][e]=k):g&&(f.support.deleteExpando?delete b[f.expando]:b.removeAttribute?b.removeAttribute(f.expando):b[f.expando]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d=null;if(typeof a=="undefined"){if(this.length){d=f.data(this[0]);if(this[0].nodeType===1){var e=this[0].attributes,g;for(var h=0,i=e.length;h<i;h++)g=e[h].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),k(this[0],g,d[g]))}}return d}if(typeof a=="object")return this.each(function(){f.data(this,a)});var j=a.split(".");j[1]=j[1]?"."+j[1]:"";if(c===b){d=this.triggerHandler("getData"+j[1]+"!",[j[0]]),d===b&&this.length&&(d=f.data(this[0],a),d=k(this[0],a,d));return d===b&&j[1]?this.data(j[0]):d}return this.each(function(){var b=f(this),d=[j[0],c];b.triggerHandler("setData"+j[1]+"!",d),f.data(this,a,c),b.triggerHandler("changeData"+j[1]+"!",d)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,c){a&&(c=(c||"fx")+"mark",f.data(a,c,(f.data(a,c,b,!0)||0)+1,!0))},_unmark:function(a,c,d){a!==!0&&(d=c,c=a,a=!1);if(c){d=d||"fx";var e=d+"mark",g=a?0:(f.data(c,e,b,!0)||1)-1;g?f.data(c,e,g,!0):(f.removeData(c,e,!0),m(c,d,"mark"))}},queue:function(a,c,d){if(a){c=(c||"fx")+"queue";var e=f.data(a,c,b,!0);d&&(!e||f.isArray(d)?e=f.data(a,c,f.makeArray(d),!0):e.push(d));return e||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e;d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),d.call(a,function(){f.dequeue(a,b)})),c.length||(f.removeData(a,b+"queue",!0),m(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(){var c=this;setTimeout(function(){f.dequeue(c,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f._Deferred(),!0))h++,l.done(m);m();return d.promise()}});var n=/[\n\t\r]/g,o=/\s+/,p=/\r/g,q=/^(?:button|input)$/i,r=/^(?:button|input|object|select|textarea)$/i,s=/^a(?:rea)?$/i,t=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,u=/\:|^on/,v,w;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(o);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(o);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(n," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(o);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ";for(var c=0,d=this.length;c<d;c++)if((" "+this[c].className+" ").replace(n," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e=this[0];if(!arguments.length){if(e){c=f.valHooks[e.nodeName.toLowerCase()]||f.valHooks[e.type];if(c&&"get"in c&&(d=c.get(e,"value"))!==b)return d;d=e.value;return typeof d=="string"?d.replace(p,""):d==null?"":d}return b}var g=f.isFunction(a);return this.each(function(d){var e=f(this),h;if(this.nodeType===1){g?h=a.call(this,d,e.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c=a.selectedIndex,d=[],e=a.options,g=a.type==="select-one";if(c<0)return null;for(var h=g?c:0,i=g?c+1:e.length;h<i;h++){var j=e[h];if(j.selected&&(f.support.optDisabled?!j.disabled:j.getAttribute("disabled")===null)&&(!j.parentNode.disabled||!f.nodeName(j.parentNode,"optgroup"))){b=f(j).val();if(g)return b;d.push(b)}}if(g&&!d.length&&e.length)return f(e[c]).val();return d},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attrFix:{tabindex:"tabIndex"},attr:function(a,c,d,e){var g=a.nodeType;if(!a||g===3||g===8||g===2)return b;if(e&&c in f.attrFn)return f(a)[c](d);if(!("getAttribute"in a))return f.prop(a,c,d);var h,i,j=g!==1||!f.isXMLDoc(a);j&&(c=f.attrFix[c]||c,i=f.attrHooks[c],i||(t.test(c)?i=w:v&&c!=="className"&&(f.nodeName(a,"form")||u.test(c))&&(i=v)));if(d!==b){if(d===null){f.removeAttr(a,c);return b}if(i&&"set"in i&&j&&(h=i.set(a,d,c))!==b)return h;a.setAttribute(c,""+d);return d}if(i&&"get"in i&&j&&(h=i.get(a,c))!==null)return h;h=a.getAttribute(c);return h===null?b:h},removeAttr:function(a,b){var c;a.nodeType===1&&(b=f.attrFix[b]||b,f.support.getSetAttribute?a.removeAttribute(b):(f.attr(a,b,""),a.removeAttributeNode(a.getAttributeNode(b))),t.test(b)&&(c=f.propFix[b]||b)in a&&(a[c]=!1))},attrHooks:{type:{set:function(a,b){if(q.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},tabIndex:{get:function(a){var c=a.getAttributeNode("tabIndex");return c&&c.specified?parseInt(c.value,10):r.test(a.nodeName)||s.test(a.nodeName)&&a.href?0:b}},value:{get:function(a,b){if(v&&f.nodeName(a,"button"))return v.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(v&&f.nodeName(a,"button"))return v.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e=a.nodeType;if(!a||e===3||e===8||e===2)return b;var g,h,i=e!==1||!f.isXMLDoc(a);i&&(c=f.propFix[c]||c,h=f.propHooks[c]);return d!==b?h&&"set"in h&&(g=h.set(a,d,c))!==b?g:a[c]=d:h&&"get"in h&&(g=h.get(a,c))!==b?g:a[c]},propHooks:{}}),w={get:function(a,c){return f.prop(a,c)?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},f.support.getSetAttribute||(f.attrFix=f.propFix,v=f.attrHooks.name=f.attrHooks.title=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&d.nodeValue!==""?d.nodeValue:b},set:function(a,b,c){var d=a.getAttributeNode(c);if(d){d.nodeValue=b;return b}}},f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})})),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}})),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var x=/\.(.*)$/,y=/^(?:textarea|input|select)$/i,z=/\./g,A=/ /g,B=/[^\w\s.|`]/g,C=function(a){return a.replace(B,"\\$&")};f.event={add:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){if(d===!1)d=D;else if(!d)return;var g,h;d.handler&&(g=d,d=g.handler),d.guid||(d.guid=f.guid++);var i=f._data(a);if(!i)return;var j=i.events,k=i.handle;j||(i.events=j={}),k||(i.handle=k=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.handle.apply(k.elem,arguments):b}),k.elem=a,c=c.split(" ");var l,m=0,n;while(l=c[m++]){h=g?f.extend({},g):{handler:d,data:e},l.indexOf(".")>-1?(n=l.split("."),l=n.shift(),h.namespace=n.slice(0).sort().join(".")):(n=[],h.namespace=""),h.type=l,h.guid||(h.guid=d.guid);var o=j[l],p=f.event.special[l]||{};if(!o){o=j[l]=[];if(!p.setup||p.setup.call(a,e,n,k)===!1)a.addEventListener?a.addEventListener(l,k,!1):a.attachEvent&&a.attachEvent("on"+l,k)}p.add&&(p.add.call(a,h),h.handler.guid||(h.handler.guid=d.guid)),o.push(h),f.event.global[l]=!0}a=null}},global:{},remove:function(a,c,d,e){if(a.nodeType!==3&&a.nodeType!==8){d===!1&&(d=D);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=f.hasData(a)&&f._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(d=c.handler,c=c.type);if(!c||typeof c=="string"&&c.charAt(0)==="."){c=c||"";for(h in t)f.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+f.map(m.slice(0).sort(),C).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!d){for(j=0;j<p.length;j++){q=p[j];if(l||n.test(q.namespace))f.event.remove(a,r,q.handler,j),p.splice(j--,1)}continue}o=f.event.special[h]||{};for(j=e||0;j<p.length;j++){q=p[j];if(d.guid===q.guid){if(l||n.test(q.namespace))e==null&&p.splice(j--,1),o.remove&&o.remove.call(a,q);if(e!=null)break}}if(p.length===0||e!=null&&p.length===1)(!o.teardown||o.teardown.call(a,m)===!1)&&f.removeEvent(a,h,s.handle),g=null,delete t[h]}if(f.isEmptyObject(t)){var u=s.handle;u&&(u.elem=null),delete s.events,delete s.handle,f.isEmptyObject(s)&&f.removeData(a,b,!0)}}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){var h=c.type||c,i=[],j;h.indexOf("!")>=0&&(h=h.slice(0,-1),j=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.
shift(),i.sort());if(!!e&&!f.event.customEvent[h]||!!f.event.global[h]){c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.exclusive=j,c.namespace=i.join("."),c.namespace_re=new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)");if(g||!e)c.preventDefault(),c.stopPropagation();if(!e){f.each(f.cache,function(){var a=f.expando,b=this[a];b&&b.events&&b.events[h]&&f.event.trigger(c,d,b.handle.elem)});return}if(e.nodeType===3||e.nodeType===8)return;c.result=b,c.target=e,d=d!=null?f.makeArray(d):[],d.unshift(c);var k=e,l=h.indexOf(":")<0?"on"+h:"";do{var m=f._data(k,"handle");c.currentTarget=k,m&&m.apply(k,d),l&&f.acceptData(k)&&k[l]&&k[l].apply(k,d)===!1&&(c.result=!1,c.preventDefault()),k=k.parentNode||k.ownerDocument||k===c.target.ownerDocument&&a}while(k&&!c.isPropagationStopped());if(!c.isDefaultPrevented()){var n,o=f.event.special[h]||{};if((!o._default||o._default.call(e.ownerDocument,c)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)){try{l&&e[h]&&(n=e[l],n&&(e[l]=null),f.event.triggered=h,e[h]())}catch(p){}n&&(e[l]=n),f.event.triggered=b}}return c.result}},handle:function(c){c=f.event.fix(c||a.event);var d=((f._data(this,"events")||{})[c.type]||[]).slice(0),e=!c.exclusive&&!c.namespace,g=Array.prototype.slice.call(arguments,0);g[0]=c,c.currentTarget=this;for(var h=0,i=d.length;h<i;h++){var j=d[h];if(e||c.namespace_re.test(j.namespace)){c.handler=j.handler,c.data=j.data,c.handleObj=j;var k=j.handler.apply(this,g);k!==b&&(c.result=k,k===!1&&(c.preventDefault(),c.stopPropagation()));if(c.isImmediatePropagationStopped())break}}return c.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(a){if(a[f.expando])return a;var d=a;a=f.Event(d);for(var e=this.props.length,g;e;)g=this.props[--e],a[g]=d[g];a.target||(a.target=a.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),!a.relatedTarget&&a.fromElement&&(a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement);if(a.pageX==null&&a.clientX!=null){var h=a.target.ownerDocument||c,i=h.documentElement,j=h.body;a.pageX=a.clientX+(i&&i.scrollLeft||j&&j.scrollLeft||0)-(i&&i.clientLeft||j&&j.clientLeft||0),a.pageY=a.clientY+(i&&i.scrollTop||j&&j.scrollTop||0)-(i&&i.clientTop||j&&j.clientTop||0)}a.which==null&&(a.charCode!=null||a.keyCode!=null)&&(a.which=a.charCode!=null?a.charCode:a.keyCode),!a.metaKey&&a.ctrlKey&&(a.metaKey=a.ctrlKey),!a.which&&a.button!==b&&(a.which=a.button&1?1:a.button&2?3:a.button&4?2:0);return a},guid:1e8,proxy:f.proxy,special:{ready:{setup:f.bindReady,teardown:f.noop},live:{add:function(a){f.event.add(this,N(a.origType,a.selector),f.extend({},a,{handler:M,guid:a.handler.guid}))},remove:function(a){f.event.remove(this,N(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}}},f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!this.preventDefault)return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?E:D):this.type=a,b&&f.extend(this,b),this.timeStamp=f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=E;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=E;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=E,this.stopPropagation()},isDefaultPrevented:D,isPropagationStopped:D,isImmediatePropagationStopped:D};var F=function(a){var b=a.relatedTarget,c=!1,d=a.type;a.type=a.data,b!==this&&(b&&(c=f.contains(this,b)),c||(f.event.handle.apply(this,arguments),a.type=d))},G=function(a){a.type=a.data,f.event.handle.apply(this,arguments)};f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={setup:function(c){f.event.add(this,b,c&&c.selector?G:F,a)},teardown:function(a){f.event.remove(this,b,a&&a.selector?G:F)}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(a,b){if(!f.nodeName(this,"form"))f.event.add(this,"click.specialSubmit",function(a){var b=a.target,c=b.type;(c==="submit"||c==="image")&&f(b).closest("form").length&&K("submit",this,arguments)}),f.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,c=b.type;(c==="text"||c==="password")&&f(b).closest("form").length&&a.keyCode===13&&K("submit",this,arguments)});else return!1},teardown:function(a){f.event.remove(this,".specialSubmit")}});if(!f.support.changeBubbles){var H,I=function(a){var b=a.type,c=a.value;b==="radio"||b==="checkbox"?c=a.checked:b==="select-multiple"?c=a.selectedIndex>-1?f.map(a.options,function(a){return a.selected}).join("-"):"":f.nodeName(a,"select")&&(c=a.selectedIndex);return c},J=function(c){var d=c.target,e,g;if(!!y.test(d.nodeName)&&!d.readOnly){e=f._data(d,"_change_data"),g=I(d),(c.type!=="focusout"||d.type!=="radio")&&f._data(d,"_change_data",g);if(e===b||g===e)return;if(e!=null||g)c.type="change",c.liveFired=b,f.event.trigger(c,arguments[1],d)}};f.event.special.change={filters:{focusout:J,beforedeactivate:J,click:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(c==="radio"||c==="checkbox"||f.nodeName(b,"select"))&&J.call(this,a)},keydown:function(a){var b=a.target,c=f.nodeName(b,"input")?b.type:"";(a.keyCode===13&&!f.nodeName(b,"textarea")||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&J.call(this,a)},beforeactivate:function(a){var b=a.target;f._data(b,"_change_data",I(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in H)f.event.add(this,c+".specialChange",H[c]);return y.test(this.nodeName)},teardown:function(a){f.event.remove(this,".specialChange");return y.test(this.nodeName)}},H=f.event.special.change.filters,H.focus=H.beforeactivate}f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){function e(a){var c=f.event.fix(a);c.type=b,c.originalEvent={},f.event.trigger(c,null,c.target),c.isDefaultPrevented()&&a.preventDefault()}var d=0;f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.each(["bind","one"],function(a,c){f.fn[c]=function(a,d,e){var g;if(typeof a=="object"){for(var h in a)this[c](h,d,a[h],e);return this}if(arguments.length===2||d===!1)e=d,d=b;c==="one"?(g=function(a){f(this).unbind(a,g);return e.apply(this,arguments)},g.guid=e.guid||f.guid++):g=e;if(a==="unload"&&c!=="one")this.one(a,d,e);else for(var i=0,j=this.length;i<j;i++)f.event.add(this[i],a,g,d);return this}}),f.fn.extend({unbind:function(a,b){if(typeof a=="object"&&!a.preventDefault)for(var c in a)this.unbind(c,a[c]);else for(var d=0,e=this.length;d<e;d++)f.event.remove(this[d],a,b);return this},delegate:function(a,b,c,d){return this.live(b,c,d,a)},undelegate:function(a,b,c){return arguments.length===0?this.unbind("live"):this.die(b,null,c,a)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f.data(this,"lastToggle"+a.guid)||0)%d;f.data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var L={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};f.each(["live","die"],function(a,c){f.fn[c]=function(a,d,e,g){var h,i=0,j,k,l,m=g||this.selector,n=g?this:f(this.context);if(typeof a=="object"&&!a.preventDefault){for(var o in a)n[c](o,d,a[o],m);return this}if(c==="die"&&!a&&g&&g.charAt(0)==="."){n.unbind(g);return this}if(d===!1||f.isFunction(d))e=d||D,d=b;a=(a||"").split(" ");while((h=a[i++])!=null){j=x.exec(h),k="",j&&(k=j[0],h=h.replace(x,""));if(h==="hover"){a.push("mouseenter"+k,"mouseleave"+k);continue}l=h,L[h]?(a.push(L[h]+k),h=h+k):h=(L[h]||h)+k;if(c==="live")for(var p=0,q=n.length;p<q;p++)f.event.add(n[p],"live."+N(h,m),{data:d,selector:m,handler:e,origType:h,origHandler:e,preType:l});else n.unbind("live."+N(h,m),e)}return this}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.bind(b,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}if(i.nodeType===1){f||(i.sizcache=c,i.sizset=g);if(typeof b!="string"){if(i===b){j=!0;break}}else if(k.filter(b,[i]).length>0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g<h;g++){var i=d[g];if(i){var j=!1;i=i[a];while(i){if(i.sizcache===c){j=d[i.sizset];break}i.nodeType===1&&!f&&(i.sizcache=c,i.sizset=g);if(i.nodeName.toLowerCase()===b){j=i;break}i=i[a]}d[g]=j}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d=0,e=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,f,g){f=f||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return f;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(e.call(n)==="[object Array]")if(!u)f.push.apply(f,n);else if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&f.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&f.push(j[t]);else p(n,f);o&&(k(o,h,f,g),k.uniqueSort(f));return f};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},k.matches=function(a,b){return k(a,null,null,b)},k.matchesSelector=function(a,b){return k(b,null,null,[a]).length>0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e<f;e++){var g,h=l.order[e];if(g=l.leftMatch[h].exec(a)){var j=g[1];g.splice(1,1);if(j.substr(j.length-1)!=="\\"){g[1]=(g[1]||"").replace(i,""),d=l.find[h](g,b,c);if(d!=null){a=a.replace(l.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},k.filter=function(a,c,d,e){var f,g,h=a,i=[],j=c,m=c&&c[0]&&k.isXML(c[0]);while(a&&c.length){for(var n in l.filter)if((f=l.leftMatch[n].exec(a))!=null&&f[2]){var o,p,q=l.filter[n],r=f[1];g=!1,f.splice(1,1);if(r.substr(r.length-1)==="\\")continue;j===i&&(i=[]);if(l.preFilter[n]){f=l.preFilter[n](f,j,d,i,e,m);if(!f)g=o=!0;else if(f===!0)continue}if(f)for(var s=0;(p=j[s])!=null;s++)if(p){o=q(p,f,s,j);var t=e^!!o;d&&o!=null?t?g=!0:j[s]=!1:t&&(i.push(p),g=!0)}if(o!==b){d||(j=i),a=a.replace(l.match[n],"");if(!g)return[];break}}if(a===h)if(g==null)k.error(a);else break;h=a}return j},k.error=function(a){throw"Syntax error, unrecognized expression: "+a};var l=k.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!j.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&k.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&k.filter(b,a,!0)}},"":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("parentNode",b,f,a,e,c)},"~":function(a,b,c){var e,f=d++,g=u;typeof b=="string"&&!j.test(b)&&(b=b.toLowerCase(),e=b,g=t),g("previousSibling",b,f,a,e,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(i,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=d++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}k.error(e)},CHILD:function(a,b){var c=b[1],d=a;switch(c){case"only":case"first":while(d=d.previousSibling)if(d.nodeType===1)return!1;if(c==="first")return!0;d=a;case"last":while(d=d.nextSibling)if(d.nodeType===1)return!1;return!0;case"nth":var e=b[2],f=b[3];if(e===1&&f===0)return!0;var g=b[0],h=a.parentNode;if(h&&(h.sizcache!==g||!a.nodeIndex)){var i=0;for(d=h.firstChild;d;d=d.nextSibling)d.nodeType===1&&(d.nodeIndex=++i);h.sizcache=g}var j=a.nodeIndex-f;return e===0?j===0:j%e===0&&j/e>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(e.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var f=a.length;c<f;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var r,s;c.documentElement.compareDocumentPosition?r=function(a,b){if(a===b){g=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(r=function(a,b){if(a===b){g=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return s(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return s(e[k],f[k]);return k===c?s(a,f[k],-1):s(e[k],b,1)},s=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),k.getText=function(a){var b="",c;for(var d=0;a[d];d++)c=a[d],c.nodeType===3||c.nodeType===4?b+=c.nodeValue:c.nodeType!==8&&(b+=k.getText(c.childNodes));return b},function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(e||!l.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return k(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g<h;g++)k(a,f[g],d);return k.filter(e,d)};f.find=k,f.expr=k.selectors,f.expr[":"]=f.expr.filters,f.unique=k.uniqueSort,f.text=k.getText,f.isXMLDoc=k.isXML,f.contains=k.contains}();var O=/Until$/,P=/^(?:parents|prevUntil|prevAll)/,Q=/,/,R=/^.[^:#\[\.,]*$/,S=Array.prototype.slice,T=f.expr.match.POS,U={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(W(this,a,!1),"not",a)},filter:function(a){return this.pushStack(W(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(d=0,e=a.length;d<e;d++)i=a[d],j[i]||(j[i]=T.test(i)?f(i,b||this.context):i);while(g&&g.ownerDocument&&g!==b){for(i in j)h=j[i],(h.jquery?h.index(g)>-1:f(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=T.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(l?l.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a=="string")return f.inArray(this[0],a?f(a):this.parent().children());return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(V(c[0])||V(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c),g=S.call(arguments);O.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!U[a]?f.unique(e):e,(this.length>1||Q.test(d))&&P.test(a)&&(e=e.reverse());return this.pushStack(e,a,g.join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var X=/ jQuery\d+="(?:\d+|null)"/g,Y=/^\s+/,Z=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,$=/<([\w:]+)/,_=/<tbody/i,ba=/<|&#?\w+;/,bb=/<(?:script|object|embed|option|style)/i,bc=/checked\s*(?:[^=]|=\s*.checked.)/i,bd=/\/(java|ecma)script/i,be=/^\s*<!(?:\[CDATA\[|\-\-)/,bf={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};bf.optgroup=bf.option,bf.tbody=bf.tfoot=bf.colgroup=bf.caption=bf.thead,bf.th=bf.td,f.support.htmlSerialize||(bf._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){f(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(X,""):null;if(typeof a=="string"&&!bb.test(a)&&(f.support.leadingWhitespace||!Y.test(a))&&!bf[($.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Z,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bc.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bg(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bm)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i;b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof a[0]=="string"&&a[0].length<512&&i===c&&a[0].charAt(0)==="<"&&!bb.test(a[0])&&(f.support.checkClone||!bc.test(a[0]))&&(g=!0,h=f.fragments[a[0]],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[a[0]]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j
)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d=a.cloneNode(!0),e,g,h;if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bi(a,d),e=bj(a),g=bj(d);for(h=0;e[h];++h)bi(e[h],g[h])}if(b){bh(a,d);if(c){e=bj(a),g=bj(d);for(h=0;e[h];++h)bh(e[h],g[h])}}e=g=null;return d},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!ba.test(k))k=b.createTextNode(k);else{k=k.replace(Z,"<$1></$2>");var l=($.exec(k)||["",""])[1].toLowerCase(),m=bf[l]||bf._default,n=m[0],o=b.createElement("div");o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=_.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&Y.test(k)&&o.insertBefore(b.createTextNode(Y.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bl(k[i]);else bl(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||bd.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.expando,g=f.event.special,h=f.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&f.noData[j.nodeName.toLowerCase()])continue;c=j[f.expando];if(c){b=d[c]&&d[c][e];if(b&&b.events){for(var k in b.events)g[k]?f.event.remove(j,k):f.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[f.expando]:j.removeAttribute&&j.removeAttribute(f.expando),delete d[c]}}}});var bn=/alpha\([^)]*\)/i,bo=/opacity=([^)]*)/,bp=/([A-Z]|^ms)/g,bq=/^-?\d+(?:px)?$/i,br=/^-?\d/,bs=/^[+\-]=/,bt=/[^+\-\.\de]+/g,bu={position:"absolute",visibility:"hidden",display:"block"},bv=["Left","Right"],bw=["Top","Bottom"],bx,by,bz;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bx(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d;if(h==="number"&&isNaN(d)||d==null)return;h==="string"&&bs.test(d)&&(d=+d.replace(bt,"")+parseFloat(f.css(a,c)),h="number"),h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bx)return bx(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bA(a,b,d);f.swap(a,bu,function(){e=bA(a,b,d)});return e}},set:function(a,b){if(!bq.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return bo.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle;c.zoom=1;var e=f.isNaN(b)?"":"alpha(opacity="+b*100+")",g=d&&d.filter||c.filter||"";c.filter=bn.test(g)?g.replace(bn,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bx(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(by=function(a,c){var d,e,g;c=c.replace(bp,"-$1").toLowerCase();if(!(e=a.ownerDocument.defaultView))return b;if(g=e.getComputedStyle(a,null))d=g.getPropertyValue(c),d===""&&!f.contains(a.ownerDocument.documentElement,a)&&(d=f.style(a,c));return d}),c.documentElement.currentStyle&&(bz=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bq.test(d)&&br.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bx=by||bz,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bB=/%20/g,bC=/\[\]$/,bD=/\r?\n/g,bE=/#.*$/,bF=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bG=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bH=/^(?:about|app|app\-storage|.+\-extension|file|widget):$/,bI=/^(?:GET|HEAD)$/,bJ=/^\/\//,bK=/\?/,bL=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bM=/^(?:select|textarea)/i,bN=/\s+/,bO=/([?&])_=[^&]*/,bP=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bQ=f.fn.load,bR={},bS={},bT,bU;try{bT=e.href}catch(bV){bT=c.createElement("a"),bT.href="",bT=bT.href}bU=bP.exec(bT.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bQ)return bQ.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bL,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bM.test(this.nodeName)||bG.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bD,"\r\n")}}):{name:b.name,value:c.replace(bD,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.bind(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?f.extend(!0,a,f.ajaxSettings,b):(b=a,a=f.extend(!0,f.ajaxSettings,b));for(var c in{context:1,url:1})c in b?a[c]=b[c]:c in f.ajaxSettings&&(a[c]=f.ajaxSettings[c]);return a},ajaxSettings:{url:bT,isLocal:bH.test(bU[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML}},ajaxPrefilter:bW(bR),ajaxTransport:bW(bS),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a?4:0;var o,r,u,w=l?bZ(d,v,l):b,x,y;if(a>=200&&a<300||a===304){if(d.ifModified){if(x=v.getResponseHeader("Last-Modified"))f.lastModified[k]=x;if(y=v.getResponseHeader("Etag"))f.etag[k]=y}if(a===304)c="notmodified",o=!0;else try{r=b$(d,w),c="success",o=!0}catch(z){c="parsererror",u=z}}else{u=c;if(!c||a)c="error",a<0&&(a=0)}v.status=a,v.statusText=c,o?h.resolveWith(e,[r,c,v]):h.rejectWith(e,[v,c,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.resolveWith(e,[v,c]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f._Deferred(),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bF.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.done,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bE,"").replace(bJ,bU[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bN),d.crossDomain==null&&(r=bP.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bU[1]&&r[2]==bU[2]&&(r[3]||(r[1]==="http:"?80:443))==(bU[3]||(bU[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),bX(bR,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bI.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bK.test(d.url)?"&":"?")+d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bO,"$1_="+x);d.url=y+(y===d.url?(bK.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", */*; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=bX(bS,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){status<2?w(-1,z):f.error(z)}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)bY(g,a[g],c,e);return d.join("&").replace(bB,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var b_=f.now(),ca=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+b_++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ca.test(b.url)||e&&ca.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ca,l),b.url===j&&(e&&(k=k.replace(ca,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cb=a.ActiveXObject?function(){for(var a in cd)cd[a](0,1)}:!1,cc=0,cd;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ce()||cf()}:ce,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cb&&delete cd[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cc,cb&&(cd||(cd={},f(a).unload(cb)),cd[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var cg={},ch,ci,cj=/^(?:toggle|show|hide)$/,ck=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cl,cm=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cn,co=a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cr("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cs(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cr("hide",3),a,b,c);for(var d=0,e=this.length;d<e;d++)if(this[d].style){var g=f.css(this[d],"display");g!=="none"&&!f._data(this[d],"olddisplay")&&f._data(this[d],"olddisplay",g)}for(d=0;d<e;d++)this[d].style&&(this[d].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cr("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return this[e.queue===!1?"each":"queue"](function(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(f.support.inlineBlockNeedsLayout?(j=cs(this.nodeName),j==="inline"?this.style.display="inline-block":(this.style.display="inline",this.style.zoom=1)):this.style.display="inline-block"))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)k=new f.fx(this,b,i),h=a[i],cj.test(h)?k[h==="toggle"?d?"show":"hide":h]():(l=ck.exec(h),m=k.cur(),l?(n=parseFloat(l[2]),o=l[3]||(f.cssNumber[i]?"":"px"),o!=="px"&&(f.style(this,i,(n||1)+o),m=(n||1)/k.cur()*m,f.style(this,i,m+o)),l[1]&&(n=(l[1]==="-="?-1:1)*n+m),k.custom(m,n,o)):k.custom(m,h,""));return!0})},stop:function(a,b){a&&this.queue([]),this.each(function(){var a=f.timers,c=a.length;b||f._unmark(!0,this);while(c--)a[c].elem===this&&(b&&a[c](!0),a.splice(c,1))}),b||this.dequeue();return this}}),f.each({slideDown:cr("show",1),slideUp:cr("hide",1),slideToggle:cr("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default,d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue!==!1?f.dequeue(this):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function h(a){return d.step(a)}var d=this,e=f.fx,g;this.startTime=cn||cp(),this.start=a,this.end=b,this.unit=c||this.unit||(f.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,h.elem=this.elem,h()&&f.timers.push(h)&&!cl&&(co?(cl=!0,g=function(){cl&&(co(g),e.tick())},co(g)):cl=setInterval(e.tick,e.interval))},show:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=cn||cp(),c=!0,d=this.elem,e=this.options,g,h;if(a||b>=e.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),e.animatedProperties[this.prop]=!0;for(g in e.animatedProperties)e.animatedProperties[g]!==!0&&(c=!1);if(c){e.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){d.style["overflow"+b]=e.overflow[a]}),e.hide&&f(d).hide();if(e.hide||e.show)for(var i in e.animatedProperties)f.style(d,i,e.orig[i]);e.complete.call(d)}return!1}e.duration==Infinity?this.now=b:(h=b-this.startTime,this.state=h/e.duration,this.pos=f.easing[e.animatedProperties[this.prop]](this.state,h,0,1,e.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){for(var a=f.timers,b=0;b<a.length;++b)a[b]()||a.splice(b--,1);a.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cl),cl=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit:a.elem[a.prop]=a.now}}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var ct=/^t(?:able|d|h)$/i,cu=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cv(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);f.offset.initialize();var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.offset.supportsFixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.offset.doesNotAddBorder&&(!f.offset.doesAddBorderForTableAndCells||!ct.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.offset.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.offset.supportsFixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={initialize:function(){var a=c.body,b=c.createElement("div"),d,e,g,h,i=parseFloat(f.css(a,"marginTop"))||0,j="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";f.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),d=b.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,this.doesNotAddBorder=e.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,e.style.position="fixed",e.style.top="20px",this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),f.offset.initialize=f.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.offset.initialize(),f.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cu.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cu.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cv(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cv(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a&&a.style?parseFloat(f.css(a,d,"padding")):null},f.fn["outer"+c]=function(a){var b=this[0];return b&&b.style?parseFloat(f.css(b,d,a?"margin":"border")):null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c];return e.document.compatMode==="CSS1Compat"&&g||e.document.body["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var h=f.css(e,d),i=parseFloat(h);return f.isNaN(i)?h:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f})(window);// jquery ui 1.8.15
(function (a, b) { function d(b) { return !a(b).parents().andSelf().filter(function () { return a.curCSS(this, "visibility") === "hidden" || a.expr.filters.hidden(this) }).length } function c(b, c) { var e = b.nodeName.toLowerCase(); if ("area" === e) { var f = b.parentNode, g = f.name, h; if (!b.href || !g || f.nodeName.toLowerCase() !== "map") { return false } h = a("img[usemap=#" + g + "]")[0]; return !!h && d(h) } return (/input|select|textarea|button|object/.test(e) ? !b.disabled : "a" == e ? b.href || c : c) && d(b) } a.ui = a.ui || {}; if (a.ui.version) { return } a.extend(a.ui, { version: "1.8.15", keyCode: { ALT: 18, BACKSPACE: 8, CAPS_LOCK: 20, COMMA: 188, COMMAND: 91, COMMAND_LEFT: 91, COMMAND_RIGHT: 93, CONTROL: 17, DELETE: 46, DOWN: 40, END: 35, ENTER: 13, ESCAPE: 27, HOME: 36, INSERT: 45, LEFT: 37, MENU: 93, NUMPAD_ADD: 107, NUMPAD_DECIMAL: 110, NUMPAD_DIVIDE: 111, NUMPAD_ENTER: 108, NUMPAD_MULTIPLY: 106, NUMPAD_SUBTRACT: 109, PAGE_DOWN: 34, PAGE_UP: 33, PERIOD: 190, RIGHT: 39, SHIFT: 16, SPACE: 32, TAB: 9, UP: 38, WINDOWS: 91} }); a.fn.extend({ propAttr: a.fn.prop || a.fn.attr, _focus: a.fn.focus, focus: function (b, c) { return typeof b === "number" ? this.each(function () { var d = this; setTimeout(function () { a(d).focus(); if (c) { c.call(d) } }, b) }) : this._focus.apply(this, arguments) }, scrollParent: function () { var b; if (a.browser.msie && /(static|relative)/.test(this.css("position")) || /absolute/.test(this.css("position"))) { b = this.parents().filter(function () { return /(relative|absolute|fixed)/.test(a.curCSS(this, "position", 1)) && /(auto|scroll)/.test(a.curCSS(this, "overflow", 1) + a.curCSS(this, "overflow-y", 1) + a.curCSS(this, "overflow-x", 1)) }).eq(0) } else { b = this.parents().filter(function () { return /(auto|scroll)/.test(a.curCSS(this, "overflow", 1) + a.curCSS(this, "overflow-y", 1) + a.curCSS(this, "overflow-x", 1)) }).eq(0) } return /fixed/.test(this.css("position")) || !b.length ? a(document) : b }, zIndex: function (c) { if (c !== b) { return this.css("zIndex", c) } if (this.length) { var d = a(this[0]), e, f; while (d.length && d[0] !== document) { e = d.css("position"); if (e === "absolute" || e === "relative" || e === "fixed") { f = parseInt(d.css("zIndex"), 10); if (!isNaN(f) && f !== 0) { return f } } d = d.parent() } } return 0 }, disableSelection: function () { return this.bind((a.support.selectstart ? "selectstart" : "mousedown") + ".ui-disableSelection", function (a) { a.preventDefault() }) }, enableSelection: function () { return this.unbind(".ui-disableSelection") } }); a.each(["Width", "Height"], function (c, d) { function h(b, c, d, f) { a.each(e, function () { c -= parseFloat(a.curCSS(b, "padding" + this, true)) || 0; if (d) { c -= parseFloat(a.curCSS(b, "border" + this + "Width", true)) || 0 } if (f) { c -= parseFloat(a.curCSS(b, "margin" + this, true)) || 0 } }); return c } var e = d === "Width" ? ["Left", "Right"] : ["Top", "Bottom"], f = d.toLowerCase(), g = { innerWidth: a.fn.innerWidth, innerHeight: a.fn.innerHeight, outerWidth: a.fn.outerWidth, outerHeight: a.fn.outerHeight }; a.fn["inner" + d] = function (c) { if (c === b) { return g["inner" + d].call(this) } return this.each(function () { a(this).css(f, h(this, c) + "px") }) }; a.fn["outer" + d] = function (b, c) { if (typeof b !== "number") { return g["outer" + d].call(this, b) } return this.each(function () { a(this).css(f, h(this, b, true, c) + "px") }) } }); a.extend(a.expr[":"], { data: function (b, c, d) { return !!a.data(b, d[3]) }, focusable: function (b) { return c(b, !isNaN(a.attr(b, "tabindex"))) }, tabbable: function (b) { var d = a.attr(b, "tabindex"), e = isNaN(d); return (e || d >= 0) && c(b, !e) } }); a(function () { var b = document.body, c = b.appendChild(c = document.createElement("div")); a.extend(c.style, { minHeight: "100px", height: "auto", padding: 0, borderWidth: 0 }); a.support.minHeight = c.offsetHeight === 100; a.support.selectstart = "onselectstart" in c; b.removeChild(c).style.display = "none" }); a.extend(a.ui, { plugin: { add: function (b, c, d) { var e = a.ui[b].prototype; for (var f in d) { e.plugins[f] = e.plugins[f] || []; e.plugins[f].push([c, d[f]]) } }, call: function (a, b, c) { var d = a.plugins[b]; if (!d || !a.element[0].parentNode) { return } for (var e = 0; e < d.length; e++) { if (a.options[d[e][0]]) { d[e][1].apply(a.element, c) } } } }, contains: function (a, b) { return document.compareDocumentPosition ? a.compareDocumentPosition(b) & 16 : a !== b && a.contains(b) }, hasScroll: function (b, c) { if (a(b).css("overflow") === "hidden") { return false } var d = c && c === "left" ? "scrollLeft" : "scrollTop", e = false; if (b[d] > 0) { return true } b[d] = 1; e = b[d] > 0; b[d] = 0; return e }, isOverAxis: function (a, b, c) { return a > b && a < b + c }, isOver: function (b, c, d, e, f, g) { return a.ui.isOverAxis(b, d, f) && a.ui.isOverAxis(c, e, g) } }) })(jQuery); (function (a, b) { if (a.cleanData) { var c = a.cleanData; a.cleanData = function (b) { for (var d = 0, e; (e = b[d]) != null; d++) { a(e).triggerHandler("remove") } c(b) } } else { var d = a.fn.remove; a.fn.remove = function (b, c) { return this.each(function () { if (!c) { if (!b || a.filter(b, [this]).length) { a("*", this).add([this]).each(function () { a(this).triggerHandler("remove") }) } } return d.call(a(this), b, c) }) } } a.widget = function (b, c, d) { var e = b.split(".")[0], f; b = b.split(".")[1]; f = e + "-" + b; if (!d) { d = c; c = a.Widget } a.expr[":"][f] = function (c) { return !!a.data(c, b) }; a[e] = a[e] || {}; a[e][b] = function (a, b) { if (arguments.length) { this._createWidget(a, b) } }; var g = new c; g.options = a.extend(true, {}, g.options); a[e][b].prototype = a.extend(true, g, { namespace: e, widgetName: b, widgetEventPrefix: a[e][b].prototype.widgetEventPrefix || b, widgetBaseClass: f }, d); a.widget.bridge(b, a[e][b]) }; a.widget.bridge = function (c, d) { a.fn[c] = function (e) { var f = typeof e === "string", g = Array.prototype.slice.call(arguments, 1), h = this; e = !f && g.length ? a.extend.apply(null, [true, e].concat(g)) : e; if (f && e.charAt(0) === "_") { return h } if (f) { this.each(function () { var d = a.data(this, c), f = d && a.isFunction(d[e]) ? d[e].apply(d, g) : d; if (f !== d && f !== b) { h = f; return false } }) } else { this.each(function () { var b = a.data(this, c); if (b) { b.option(e || {})._init() } else { a.data(this, c, new d(e, this)) } }) } return h } }; a.Widget = function (a, b) { if (arguments.length) { this._createWidget(a, b) } }; a.Widget.prototype = { widgetName: "widget", widgetEventPrefix: "", options: { disabled: false }, _createWidget: function (b, c) { a.data(c, this.widgetName, this); this.element = a(c); this.options = a.extend(true, {}, this.options, this._getCreateOptions(), b); var d = this; this.element.bind("remove." + this.widgetName, function () { d.destroy() }); this._create(); this._trigger("create"); this._init() }, _getCreateOptions: function () { return a.metadata && a.metadata.get(this.element[0])[this.widgetName] }, _create: function () { }, _init: function () { }, destroy: function () { this.element.unbind("." + this.widgetName).removeData(this.widgetName); this.widget().unbind("." + this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass + "-disabled " + "ui-state-disabled") }, widget: function () { return this.element }, option: function (c, d) { var e = c; if (arguments.length === 0) { return a.extend({}, this.options) } if (typeof c === "string") { if (d === b) { return this.options[c] } e = {}; e[c] = d } this._setOptions(e); return this }, _setOptions: function (b) { var c = this; a.each(b, function (a, b) { c._setOption(a, b) }); return this }, _setOption: function (a, b) { this.options[a] = b; if (a === "disabled") { this.widget()[b ? "addClass" : "removeClass"](this.widgetBaseClass + "-disabled" + " " + "ui-state-disabled").attr("aria-disabled", b) } return this }, enable: function () { return this._setOption("disabled", false) }, disable: function () { return this._setOption("disabled", true) }, _trigger: function (b, c, d) { var e = this.options[b]; c = a.Event(c); c.type = (b === this.widgetEventPrefix ? b : this.widgetEventPrefix + b).toLowerCase(); d = d || {}; if (c.originalEvent) { for (var f = a.event.props.length, g; f; ) { g = a.event.props[--f]; c[g] = c.originalEvent[g] } } this.element.trigger(c, d); return !(a.isFunction(e) && e.call(this.element[0], c, d) === false || c.isDefaultPrevented()) } } })(jQuery); (function (a, b) { a.widget("ui.mouse", { options: { cancel: ":input,option", distance: 1, delay: 0 }, _mouseInit: function () { var b = this; this.element.bind("mousedown." + this.widgetName, function (a) { return b._mouseDown(a) }).bind("click." + this.widgetName, function (c) { if (true === a.data(c.target, b.widgetName + ".preventClickEvent")) { a.removeData(c.target, b.widgetName + ".preventClickEvent"); c.stopImmediatePropagation(); return false } }); this.started = false }, _mouseDestroy: function () { this.element.unbind("." + this.widgetName) }, _mouseDown: function (b) { b.originalEvent = b.originalEvent || {}; if (b.originalEvent.mouseHandled) { return } this._mouseStarted && this._mouseUp(b); this._mouseDownEvent = b; var c = this, d = b.which == 1, e = typeof this.options.cancel == "string" ? a(b.target).closest(this.options.cancel).length : false; if (!d || e || !this._mouseCapture(b)) { return true } this.mouseDelayMet = !this.options.delay; if (!this.mouseDelayMet) { this._mouseDelayTimer = setTimeout(function () { c.mouseDelayMet = true }, this.options.delay) } if (this._mouseDistanceMet(b) && this._mouseDelayMet(b)) { this._mouseStarted = this._mouseStart(b) !== false; if (!this._mouseStarted) { b.preventDefault(); return true } } if (true === a.data(b.target, this.widgetName + ".preventClickEvent")) { a.removeData(b.target, this.widgetName + ".preventClickEvent") } this._mouseMoveDelegate = function (a) { return c._mouseMove(a) }; this._mouseUpDelegate = function (a) { return c._mouseUp(a) }; a(document).bind("mousemove." + this.widgetName, this._mouseMoveDelegate).bind("mouseup." + this.widgetName, this._mouseUpDelegate); b.preventDefault(); b.originalEvent.mouseHandled = true; return true }, _mouseMove: function (b) { if (a.browser.msie && !(document.documentMode >= 9) && !b.button) { return this._mouseUp(b) } if (this._mouseStarted) { this._mouseDrag(b); return b.preventDefault() } if (this._mouseDistanceMet(b) && this._mouseDelayMet(b)) { this._mouseStarted = this._mouseStart(this._mouseDownEvent, b) !== false; this._mouseStarted ? this._mouseDrag(b) : this._mouseUp(b) } return !this._mouseStarted }, _mouseUp: function (b) { a(document).unbind("mousemove." + this.widgetName, this._mouseMoveDelegate).unbind("mouseup." + this.widgetName, this._mouseUpDelegate); if (this._mouseStarted) { this._mouseStarted = false; if (b.target == this._mouseDownEvent.target) { a.data(b.target, this.widgetName + ".preventClickEvent", true) } this._mouseStop(b) } return false }, _mouseDistanceMet: function (a) { return Math.max(Math.abs(this._mouseDownEvent.pageX - a.pageX), Math.abs(this._mouseDownEvent.pageY - a.pageY)) >= this.options.distance }, _mouseDelayMet: function (a) { return this.mouseDelayMet }, _mouseStart: function (a) { }, _mouseDrag: function (a) { }, _mouseStop: function (a) { }, _mouseCapture: function (a) { return true } }) })(jQuery); (function (a, b) { a.ui = a.ui || {}; var c = /left|center|right/, d = /top|center|bottom/, e = "center", f = a.fn.position, g = a.fn.offset; a.fn.position = function (b) { if (!b || !b.of) { return f.apply(this, arguments) } b = a.extend({}, b); var g = a(b.of), h = g[0], i = (b.collision || "flip").split(" "), j = b.offset ? b.offset.split(" ") : [0, 0], k, l, m; if (h.nodeType === 9) { k = g.width(); l = g.height(); m = { top: 0, left: 0} } else if (h.setTimeout) { k = g.width(); l = g.height(); m = { top: g.scrollTop(), left: g.scrollLeft()} } else if (h.preventDefault) { b.at = "left top"; k = l = 0; m = { top: b.of.pageY, left: b.of.pageX} } else { k = g.outerWidth(); l = g.outerHeight(); m = g.offset() } a.each(["my", "at"], function () { var a = (b[this] || "").split(" "); if (a.length === 1) { a = c.test(a[0]) ? a.concat([e]) : d.test(a[0]) ? [e].concat(a) : [e, e] } a[0] = c.test(a[0]) ? a[0] : e; a[1] = d.test(a[1]) ? a[1] : e; b[this] = a }); if (i.length === 1) { i[1] = i[0] } j[0] = parseInt(j[0], 10) || 0; if (j.length === 1) { j[1] = j[0] } j[1] = parseInt(j[1], 10) || 0; if (b.at[0] === "right") { m.left += k } else if (b.at[0] === e) { m.left += k / 2 } if (b.at[1] === "bottom") { m.top += l } else if (b.at[1] === e) { m.top += l / 2 } m.left += j[0]; m.top += j[1]; return this.each(function () { var c = a(this), d = c.outerWidth(), f = c.outerHeight(), g = parseInt(a.curCSS(this, "marginLeft", true)) || 0, h = parseInt(a.curCSS(this, "marginTop", true)) || 0, n = d + g + (parseInt(a.curCSS(this, "marginRight", true)) || 0), o = f + h + (parseInt(a.curCSS(this, "marginBottom", true)) || 0), p = a.extend({}, m), q; if (b.my[0] === "right") { p.left -= d } else if (b.my[0] === e) { p.left -= d / 2 } if (b.my[1] === "bottom") { p.top -= f } else if (b.my[1] === e) { p.top -= f / 2 } p.left = Math.round(p.left); p.top = Math.round(p.top); q = { left: p.left - g, top: p.top - h }; a.each(["left", "top"], function (c, e) { if (a.ui.position[i[c]]) { a.ui.position[i[c]][e](p, { targetWidth: k, targetHeight: l, elemWidth: d, elemHeight: f, collisionPosition: q, collisionWidth: n, collisionHeight: o, offset: j, my: b.my, at: b.at }) } }); if (a.fn.bgiframe) { c.bgiframe() } c.offset(a.extend(p, { using: b.using })) }) }; a.ui.position = { fit: { left: function (b, c) { var d = a(window), e = c.collisionPosition.left + c.collisionWidth - d.width() - d.scrollLeft(); b.left = e > 0 ? b.left - e : Math.max(b.left - c.collisionPosition.left, b.left) }, top: function (b, c) { var d = a(window), e = c.collisionPosition.top + c.collisionHeight - d.height() - d.scrollTop(); b.top = e > 0 ? b.top - e : Math.max(b.top - c.collisionPosition.top, b.top) } }, flip: { left: function (b, c) { if (c.at[0] === e) { return } var d = a(window), f = c.collisionPosition.left + c.collisionWidth - d.width() - d.scrollLeft(), g = c.my[0] === "left" ? -c.elemWidth : c.my[0] === "right" ? c.elemWidth : 0, h = c.at[0] === "left" ? c.targetWidth : -c.targetWidth, i = -2 * c.offset[0]; b.left += c.collisionPosition.left < 0 ? g + h + i : f > 0 ? g + h + i : 0 }, top: function (b, c) { if (c.at[1] === e) { return } var d = a(window), f = c.collisionPosition.top + c.collisionHeight - d.height() - d.scrollTop(), g = c.my[1] === "top" ? -c.elemHeight : c.my[1] === "bottom" ? c.elemHeight : 0, h = c.at[1] === "top" ? c.targetHeight : -c.targetHeight, i = -2 * c.offset[1]; b.top += c.collisionPosition.top < 0 ? g + h + i : f > 0 ? g + h + i : 0 } } }; if (!a.offset.setOffset) { a.offset.setOffset = function (b, c) { if (/static/.test(a.curCSS(b, "position"))) { b.style.position = "relative" } var d = a(b), e = d.offset(), f = parseInt(a.curCSS(b, "top", true), 10) || 0, g = parseInt(a.curCSS(b, "left", true), 10) || 0, h = { top: c.top - e.top + f, left: c.left - e.left + g }; if ("using" in c) { c.using.call(b, h) } else { d.css(h) } }; a.fn.offset = function (b) { var c = this[0]; if (!c || !c.ownerDocument) { return null } if (b) { return this.each(function () { a.offset.setOffset(this, b) }) } return g.call(this) } } })(jQuery); (function (a, b) { a.widget("ui.draggable", a.ui.mouse, { widgetEventPrefix: "drag", options: { addClasses: true, appendTo: "parent", axis: false, connectToSortable: false, containment: false, cursor: "auto", cursorAt: false, grid: false, handle: false, helper: "original", iframeFix: false, opacity: false, refreshPositions: false, revert: false, revertDuration: 500, scope: "default", scroll: true, scrollSensitivity: 20, scrollSpeed: 20, snap: false, snapMode: "both", snapTolerance: 20, stack: false, zIndex: false }, _create: function () { if (this.options.helper == "original" && !/^(?:r|a|f)/.test(this.element.css("position"))) this.element[0].style.position = "relative"; this.options.addClasses && this.element.addClass("ui-draggable"); this.options.disabled && this.element.addClass("ui-draggable-disabled"); this._mouseInit() }, destroy: function () { if (!this.element.data("draggable")) return; this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable" + " ui-draggable-dragging" + " ui-draggable-disabled"); this._mouseDestroy(); return this }, _mouseCapture: function (b) { var c = this.options; if (this.helper || c.disabled || a(b.target).is(".ui-resizable-handle")) return false; this.handle = this._getHandle(b); if (!this.handle) return false; a(c.iframeFix === true ? "iframe" : c.iframeFix).each(function () { a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({ width: this.offsetWidth + "px", height: this.offsetHeight + "px", position: "absolute", opacity: "0.001", zIndex: 1e3 }).css(a(this).offset()).appendTo("body") }); return true }, _mouseStart: function (b) { var c = this.options; this.helper = this._createHelper(b); this._cacheHelperProportions(); if (a.ui.ddmanager) a.ui.ddmanager.current = this; this._cacheMargins(); this.cssPosition = this.helper.css("position"); this.scrollParent = this.helper.scrollParent(); this.offset = this.positionAbs = this.element.offset(); this.offset = { top: this.offset.top - this.margins.top, left: this.offset.left - this.margins.left }; a.extend(this.offset, { click: { left: b.pageX - this.offset.left, top: b.pageY - this.offset.top }, parent: this._getParentOffset(), relative: this._getRelativeOffset() }); this.originalPosition = this.position = this._generatePosition(b); this.originalPageX = b.pageX; this.originalPageY = b.pageY; c.cursorAt && this._adjustOffsetFromHelper(c.cursorAt); if (c.containment) this._setContainment(); if (this._trigger("start", b) === false) { this._clear(); return false } this._cacheHelperProportions(); if (a.ui.ddmanager && !c.dropBehaviour) a.ui.ddmanager.prepareOffsets(this, b); this.helper.addClass("ui-draggable-dragging"); this._mouseDrag(b, true); if (a.ui.ddmanager) a.ui.ddmanager.dragStart(this, b); return true }, _mouseDrag: function (b, c) { this.position = this._generatePosition(b); this.positionAbs = this._convertPositionTo("absolute"); if (!c) { var d = this._uiHash(); if (this._trigger("drag", b, d) === false) { this._mouseUp({}); return false } this.position = d.position } if (!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left + "px"; if (!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top + "px"; if (a.ui.ddmanager) a.ui.ddmanager.drag(this, b); return false }, _mouseStop: function (b) { var c = false; if (a.ui.ddmanager && !this.options.dropBehaviour) c = a.ui.ddmanager.drop(this, b); if (this.dropped) { c = this.dropped; this.dropped = false } if ((!this.element[0] || !this.element[0].parentNode) && this.options.helper == "original") return false; if (this.options.revert == "invalid" && !c || this.options.revert == "valid" && c || this.options.revert === true || a.isFunction(this.options.revert) && this.options.revert.call(this.element, c)) { var d = this; a(this.helper).animate(this.originalPosition, parseInt(this.options.revertDuration, 10), function () { if (d._trigger("stop", b) !== false) { d._clear() } }) } else { if (this._trigger("stop", b) !== false) { this._clear() } } return false }, _mouseUp: function (b) { if (this.options.iframeFix === true) { a("div.ui-draggable-iframeFix").each(function () { this.parentNode.removeChild(this) }) } if (a.ui.ddmanager) a.ui.ddmanager.dragStop(this, b); return a.ui.mouse.prototype._mouseUp.call(this, b) }, cancel: function () { if (this.helper.is(".ui-draggable-dragging")) { this._mouseUp({}) } else { this._clear() } return this }, _getHandle: function (b) { var c = !this.options.handle || !a(this.options.handle, this.element).length ? true : false; a(this.options.handle, this.element).find("*").andSelf().each(function () { if (this == b.target) c = true }); return c }, _createHelper: function (b) { var c = this.options; var d = a.isFunction(c.helper) ? a(c.helper.apply(this.element[0], [b])) : c.helper == "clone" ? this.element.clone().removeAttr("id") : this.element; if (!d.parents("body").length) d.appendTo(c.appendTo == "parent" ? this.element[0].parentNode : c.appendTo); if (d[0] != this.element[0] && !/(fixed|absolute)/.test(d.css("position"))) d.css("position", "absolute"); return d }, _adjustOffsetFromHelper: function (b) { if (typeof b == "string") { b = b.split(" ") } if (a.isArray(b)) { b = { left: +b[0], top: +b[1] || 0} } if ("left" in b) { this.offset.click.left = b.left + this.margins.left } if ("right" in b) { this.offset.click.left = this.helperProportions.width - b.right + this.margins.left } if ("top" in b) { this.offset.click.top = b.top + this.margins.top } if ("bottom" in b) { this.offset.click.top = this.helperProportions.height - b.bottom + this.margins.top } }, _getParentOffset: function () { this.offsetParent = this.helper.offsetParent(); var b = this.offsetParent.offset(); if (this.cssPosition == "absolute" && this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) { b.left += this.scrollParent.scrollLeft(); b.top += this.scrollParent.scrollTop() } if (this.offsetParent[0] == document.body || this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == "html" && a.browser.msie) b = { top: 0, left: 0 }; return { top: b.top + (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0), left: b.left + (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0)} }, _getRelativeOffset: function () { if (this.cssPosition == "relative") { var a = this.element.position(); return { top: a.top - (parseInt(this.helper.css("top"), 10) || 0) + this.scrollParent.scrollTop(), left: a.left - (parseInt(this.helper.css("left"), 10) || 0) + this.scrollParent.scrollLeft()} } else { return { top: 0, left: 0} } }, _cacheMargins: function () { this.margins = { left: parseInt(this.element.css("marginLeft"), 10) || 0, top: parseInt(this.element.css("marginTop"), 10) || 0, right: parseInt(this.element.css("marginRight"), 10) || 0, bottom: parseInt(this.element.css("marginBottom"), 10) || 0} }, _cacheHelperProportions: function () { this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight()} }, _setContainment: function () { var b = this.options; if (b.containment == "parent") b.containment = this.helper[0].parentNode; if (b.containment == "document" || b.containment == "window") this.containment = [b.containment == "document" ? 0 : a(window).scrollLeft() - this.offset.relative.left - this.offset.parent.left, b.containment == "document" ? 0 : a(window).scrollTop() - this.offset.relative.top - this.offset.parent.top, (b.containment == "document" ? 0 : a(window).scrollLeft()) + a(b.containment == "document" ? document : window).width() - this.helperProportions.width - this.margins.left, (b.containment == "document" ? 0 : a(window).scrollTop()) + (a(b.containment == "document" ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top]; if (!/^(document|window|parent)$/.test(b.containment) && b.containment.constructor != Array) { var c = a(b.containment); var d = c[0]; if (!d) return; var e = c.offset(); var f = a(d).css("overflow") != "hidden"; this.containment = [(parseInt(a(d).css("borderLeftWidth"), 10) || 0) + (parseInt(a(d).css("paddingLeft"), 10) || 0), (parseInt(a(d).css("borderTopWidth"), 10) || 0) + (parseInt(a(d).css("paddingTop"), 10) || 0), (f ? Math.max(d.scrollWidth, d.offsetWidth) : d.offsetWidth) - (parseInt(a(d).css("borderLeftWidth"), 10) || 0) - (parseInt(a(d).css("paddingRight"), 10) || 0) - this.helperProportions.width - this.margins.left - this.margins.right, (f ? Math.max(d.scrollHeight, d.offsetHeight) : d.offsetHeight) - (parseInt(a(d).css("borderTopWidth"), 10) || 0) - (parseInt(a(d).css("paddingBottom"), 10) || 0) - this.helperProportions.height - this.margins.top - this.margins.bottom]; this.relative_container = c } else if (b.containment.constructor == Array) { this.containment = b.containment } }, _convertPositionTo: function (b, c) { if (!c) c = this.position; var d = b == "absolute" ? 1 : -1; var e = this.options, f = this.cssPosition == "absolute" && !(this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, g = /(html|body)/i.test(f[0].tagName); return { top: c.top + this.offset.relative.top * d + this.offset.parent.top * d - (a.browser.safari && a.browser.version < 526 && this.cssPosition == "fixed" ? 0 : (this.cssPosition == "fixed" ? -this.scrollParent.scrollTop() : g ? 0 : f.scrollTop()) * d), left: c.left + this.offset.relative.left * d + this.offset.parent.left * d - (a.browser.safari && a.browser.version < 526 && this.cssPosition == "fixed" ? 0 : (this.cssPosition == "fixed" ? -this.scrollParent.scrollLeft() : g ? 0 : f.scrollLeft()) * d)} }, _generatePosition: function (b) { var c = this.options, d = this.cssPosition == "absolute" && !(this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, e = /(html|body)/i.test(d[0].tagName); var f = b.pageX; var g = b.pageY; if (this.originalPosition) { var h; if (this.containment) { if (this.relative_container) { var i = this.relative_container.offset(); h = [this.containment[0] + i.left, this.containment[1] + i.top, this.containment[2] + i.left, this.containment[3] + i.top] } else { h = this.containment } if (b.pageX - this.offset.click.left < h[0]) f = h[0] + this.offset.click.left; if (b.pageY - this.offset.click.top < h[1]) g = h[1] + this.offset.click.top; if (b.pageX - this.offset.click.left > h[2]) f = h[2] + this.offset.click.left; if (b.pageY - this.offset.click.top > h[3]) g = h[3] + this.offset.click.top } if (c.grid) { var j = c.grid[1] ? this.originalPageY + Math.round((g - this.originalPageY) / c.grid[1]) * c.grid[1] : this.originalPageY; g = h ? !(j - this.offset.click.top < h[1] || j - this.offset.click.top > h[3]) ? j : !(j - this.offset.click.top < h[1]) ? j - c.grid[1] : j + c.grid[1] : j; var k = c.grid[0] ? this.originalPageX + Math.round((f - this.originalPageX) / c.grid[0]) * c.grid[0] : this.originalPageX; f = h ? !(k - this.offset.click.left < h[0] || k - this.offset.click.left > h[2]) ? k : !(k - this.offset.click.left < h[0]) ? k - c.grid[0] : k + c.grid[0] : k } } return { top: g - this.offset.click.top - this.offset.relative.top - this.offset.parent.top + (a.browser.safari && a.browser.version < 526 && this.cssPosition == "fixed" ? 0 : this.cssPosition == "fixed" ? -this.scrollParent.scrollTop() : e ? 0 : d.scrollTop()), left: f - this.offset.click.left - this.offset.relative.left - this.offset.parent.left + (a.browser.safari && a.browser.version < 526 && this.cssPosition == "fixed" ? 0 : this.cssPosition == "fixed" ? -this.scrollParent.scrollLeft() : e ? 0 : d.scrollLeft())} }, _clear: function () { this.helper.removeClass("ui-draggable-dragging"); if (this.helper[0] != this.element[0] && !this.cancelHelperRemoval) this.helper.remove(); this.helper = null; this.cancelHelperRemoval = false }, _trigger: function (b, c, d) { d = d || this._uiHash(); a.ui.plugin.call(this, b, [c, d]); if (b == "drag") this.positionAbs = this._convertPositionTo("absolute"); return a.Widget.prototype._trigger.call(this, b, c, d) }, plugins: {}, _uiHash: function (a) { return { helper: this.helper, position: this.position, originalPosition: this.originalPosition, offset: this.positionAbs} } }); a.extend(a.ui.draggable, { version: "1.8.15" }); a.ui.plugin.add("draggable", "connectToSortable", { start: function (b, c) { var d = a(this).data("draggable"), e = d.options, f = a.extend({}, c, { item: d.element }); d.sortables = []; a(e.connectToSortable).each(function () { var c = a.data(this, "sortable"); if (c && !c.options.disabled) { d.sortables.push({ instance: c, shouldRevert: c.options.revert }); c.refreshPositions(); c._trigger("activate", b, f) } }) }, stop: function (b, c) { var d = a(this).data("draggable"), e = a.extend({}, c, { item: d.element }); a.each(d.sortables, function () { if (this.instance.isOver) { this.instance.isOver = 0; d.cancelHelperRemoval = true; this.instance.cancelHelperRemoval = false; if (this.shouldRevert) this.instance.options.revert = true; this.instance._mouseStop(b); this.instance.options.helper = this.instance.options._helper; if (d.options.helper == "original") this.instance.currentItem.css({ top: "auto", left: "auto" }) } else { this.instance.cancelHelperRemoval = false; this.instance._trigger("deactivate", b, e) } }) }, drag: function (b, c) { var d = a(this).data("draggable"), e = this; var f = function (b) { var c = this.offset.click.top, d = this.offset.click.left; var e = this.positionAbs.top, f = this.positionAbs.left; var g = b.height, h = b.width; var i = b.top, j = b.left; return a.ui.isOver(e + c, f + d, i, j, g, h) }; a.each(d.sortables, function (f) { this.instance.positionAbs = d.positionAbs; this.instance.helperProportions = d.helperProportions; this.instance.offset.click = d.offset.click; if (this.instance._intersectsWith(this.instance.containerCache)) { if (!this.instance.isOver) { this.instance.isOver = 1; this.instance.currentItem = a(e).clone().removeAttr("id").appendTo(this.instance.element).data("sortable-item", true); this.instance.options._helper = this.instance.options.helper; this.instance.options.helper = function () { return c.helper[0] }; b.target = this.instance.currentItem[0]; this.instance._mouseCapture(b, true); this.instance._mouseStart(b, true, true); this.instance.offset.click.top = d.offset.click.top; this.instance.offset.click.left = d.offset.click.left; this.instance.offset.parent.left -= d.offset.parent.left - this.instance.offset.parent.left; this.instance.offset.parent.top -= d.offset.parent.top - this.instance.offset.parent.top; d._trigger("toSortable", b); d.dropped = this.instance.element; d.currentItem = d.element; this.instance.fromOutside = d } if (this.instance.currentItem) this.instance._mouseDrag(b) } else { if (this.instance.isOver) { this.instance.isOver = 0; this.instance.cancelHelperRemoval = true; this.instance.options.revert = false; this.instance._trigger("out", b, this.instance._uiHash(this.instance)); this.instance._mouseStop(b, true); this.instance.options.helper = this.instance.options._helper; this.instance.currentItem.remove(); if (this.instance.placeholder) this.instance.placeholder.remove(); d._trigger("fromSortable", b); d.dropped = false } } }) } }); a.ui.plugin.add("draggable", "cursor", { start: function (b, c) { var d = a("body"), e = a(this).data("draggable").options; if (d.css("cursor")) e._cursor = d.css("cursor"); d.css("cursor", e.cursor) }, stop: function (b, c) { var d = a(this).data("draggable").options; if (d._cursor) a("body").css("cursor", d._cursor) } }); a.ui.plugin.add("draggable", "opacity", { start: function (b, c) { var d = a(c.helper), e = a(this).data("draggable").options; if (d.css("opacity")) e._opacity = d.css("opacity"); d.css("opacity", e.opacity) }, stop: function (b, c) { var d = a(this).data("draggable").options; if (d._opacity) a(c.helper).css("opacity", d._opacity) } }); a.ui.plugin.add("draggable", "scroll", { start: function (b, c) { var d = a(this).data("draggable"); if (d.scrollParent[0] != document && d.scrollParent[0].tagName != "HTML") d.overflowOffset = d.scrollParent.offset() }, drag: function (b, c) { var d = a(this).data("draggable"), e = d.options, f = false; if (d.scrollParent[0] != document && d.scrollParent[0].tagName != "HTML") { if (!e.axis || e.axis != "x") { if (d.overflowOffset.top + d.scrollParent[0].offsetHeight - b.pageY < e.scrollSensitivity) d.scrollParent[0].scrollTop = f = d.scrollParent[0].scrollTop + e.scrollSpeed; else if (b.pageY - d.overflowOffset.top < e.scrollSensitivity) d.scrollParent[0].scrollTop = f = d.scrollParent[0].scrollTop - e.scrollSpeed } if (!e.axis || e.axis != "y") { if (d.overflowOffset.left + d.scrollParent[0].offsetWidth - b.pageX < e.scrollSensitivity) d.scrollParent[0].scrollLeft = f = d.scrollParent[0].scrollLeft + e.scrollSpeed; else if (b.pageX - d.overflowOffset.left < e.scrollSensitivity) d.scrollParent[0].scrollLeft = f = d.scrollParent[0].scrollLeft - e.scrollSpeed } } else { if (!e.axis || e.axis != "x") { if (b.pageY - a(document).scrollTop() < e.scrollSensitivity) f = a(document).scrollTop(a(document).scrollTop() - e.scrollSpeed); else if (a(window).height() - (b.pageY - a(document).scrollTop()) < e.scrollSensitivity) f = a(document).scrollTop(a(document).scrollTop() + e.scrollSpeed) } if (!e.axis || e.axis != "y") { if (b.pageX - a(document).scrollLeft() < e.scrollSensitivity) f = a(document).scrollLeft(a(document).scrollLeft() - e.scrollSpeed); else if (a(window).width() - (b.pageX - a(document).scrollLeft()) < e.scrollSensitivity) f = a(document).scrollLeft(a(document).scrollLeft() + e.scrollSpeed) } } if (f !== false && a.ui.ddmanager && !e.dropBehaviour) a.ui.ddmanager.prepareOffsets(d, b) } }); a.ui.plugin.add("draggable", "snap", { start: function (b, c) { var d = a(this).data("draggable"), e = d.options; d.snapElements = []; a(e.snap.constructor != String ? e.snap.items || ":data(draggable)" : e.snap).each(function () { var b = a(this); var c = b.offset(); if (this != d.element[0]) d.snapElements.push({ item: this, width: b.outerWidth(), height: b.outerHeight(), top: c.top, left: c.left }) }) }, drag: function (b, c) { var d = a(this).data("draggable"), e = d.options; var f = e.snapTolerance; var g = c.offset.left, h = g + d.helperProportions.width, i = c.offset.top, j = i + d.helperProportions.height; for (var k = d.snapElements.length - 1; k >= 0; k--) { var l = d.snapElements[k].left, m = l + d.snapElements[k].width, n = d.snapElements[k].top, o = n + d.snapElements[k].height; if (!(l - f < g && g < m + f && n - f < i && i < o + f || l - f < g && g < m + f && n - f < j && j < o + f || l - f < h && h < m + f && n - f < i && i < o + f || l - f < h && h < m + f && n - f < j && j < o + f)) { if (d.snapElements[k].snapping) d.options.snap.release && d.options.snap.release.call(d.element, b, a.extend(d._uiHash(), { snapItem: d.snapElements[k].item })); d.snapElements[k].snapping = false; continue } if (e.snapMode != "inner") { var p = Math.abs(n - j) <= f; var q = Math.abs(o - i) <= f; var r = Math.abs(l - h) <= f; var s = Math.abs(m - g) <= f; if (p) c.position.top = d._convertPositionTo("relative", { top: n - d.helperProportions.height, left: 0 }).top - d.margins.top; if (q) c.position.top = d._convertPositionTo("relative", { top: o, left: 0 }).top - d.margins.top; if (r) c.position.left = d._convertPositionTo("relative", { top: 0, left: l - d.helperProportions.width }).left - d.margins.left; if (s) c.position.left = d._convertPositionTo("relative", { top: 0, left: m }).left - d.margins.left } var t = p || q || r || s; if (e.snapMode != "outer") { var p = Math.abs(n - i) <= f; var q = Math.abs(o - j) <= f; var r = Math.abs(l - g) <= f; var s = Math.abs(m - h) <= f; if (p) c.position.top = d._convertPositionTo("relative", { top: n, left: 0 }).top - d.margins.top; if (q) c.position.top = d._convertPositionTo("relative", { top: o - d.helperProportions.height, left: 0 }).top - d.margins.top; if (r) c.position.left = d._convertPositionTo("relative", { top: 0, left: l }).left - d.margins.left; if (s) c.position.left = d._convertPositionTo("relative", { top: 0, left: m - d.helperProportions.width }).left - d.margins.left } if (!d.snapElements[k].snapping && (p || q || r || s || t)) d.options.snap.snap && d.options.snap.snap.call(d.element, b, a.extend(d._uiHash(), { snapItem: d.snapElements[k].item })); d.snapElements[k].snapping = p || q || r || s || t } } }); a.ui.plugin.add("draggable", "stack", { start: function (b, c) { var d = a(this).data("draggable").options; var e = a.makeArray(a(d.stack)).sort(function (b, c) { return (parseInt(a(b).css("zIndex"), 10) || 0) - (parseInt(a(c).css("zIndex"), 10) || 0) }); if (!e.length) { return } var f = parseInt(e[0].style.zIndex) || 0; a(e).each(function (a) { this.style.zIndex = f + a }); this[0].style.zIndex = f + e.length } }); a.ui.plugin.add("draggable", "zIndex", { start: function (b, c) { var d = a(c.helper), e = a(this).data("draggable").options; if (d.css("zIndex")) e._zIndex = d.css("zIndex"); d.css("zIndex", e.zIndex) }, stop: function (b, c) { var d = a(this).data("draggable").options; if (d._zIndex) a(c.helper).css("zIndex", d._zIndex) } }) })(jQuery); (function (a, b) { a.widget("ui.droppable", { widgetEventPrefix: "drop", options: { accept: "*", activeClass: false, addClasses: true, greedy: false, hoverClass: false, scope: "default", tolerance: "intersect" }, _create: function () { var b = this.options, c = b.accept; this.isover = 0; this.isout = 1; this.accept = a.isFunction(c) ? c : function (a) { return a.is(c) }; this.proportions = { width: this.element[0].offsetWidth, height: this.element[0].offsetHeight }; a.ui.ddmanager.droppables[b.scope] = a.ui.ddmanager.droppables[b.scope] || []; a.ui.ddmanager.droppables[b.scope].push(this); b.addClasses && this.element.addClass("ui-droppable") }, destroy: function () { var b = a.ui.ddmanager.droppables[this.options.scope]; for (var c = 0; c < b.length; c++) if (b[c] == this) b.splice(c, 1); this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable"); return this }, _setOption: function (b, c) { if (b == "accept") { this.accept = a.isFunction(c) ? c : function (a) { return a.is(c) } } a.Widget.prototype._setOption.apply(this, arguments) }, _activate: function (b) { var c = a.ui.ddmanager.current; if (this.options.activeClass) this.element.addClass(this.options.activeClass); c && this._trigger("activate", b, this.ui(c)) }, _deactivate: function (b) { var c = a.ui.ddmanager.current; if (this.options.activeClass) this.element.removeClass(this.options.activeClass); c && this._trigger("deactivate", b, this.ui(c)) }, _over: function (b) { var c = a.ui.ddmanager.current; if (!c || (c.currentItem || c.element)[0] == this.element[0]) return; if (this.accept.call(this.element[0], c.currentItem || c.element)) { if (this.options.hoverClass) this.element.addClass(this.options.hoverClass); this._trigger("over", b, this.ui(c)) } }, _out: function (b) { var c = a.ui.ddmanager.current; if (!c || (c.currentItem || c.element)[0] == this.element[0]) return; if (this.accept.call(this.element[0], c.currentItem || c.element)) { if (this.options.hoverClass) this.element.removeClass(this.options.hoverClass); this._trigger("out", b, this.ui(c)) } }, _drop: function (b, c) { var d = c || a.ui.ddmanager.current; if (!d || (d.currentItem || d.element)[0] == this.element[0]) return false; var e = false; this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function () { var b = a.data(this, "droppable"); if (b.options.greedy && !b.options.disabled && b.options.scope == d.options.scope && b.accept.call(b.element[0], d.currentItem || d.element) && a.ui.intersect(d, a.extend(b, { offset: b.element.offset() }), b.options.tolerance)) { e = true; return false } }); if (e) return false; if (this.accept.call(this.element[0], d.currentItem || d.element)) { if (this.options.activeClass) this.element.removeClass(this.options.activeClass); if (this.options.hoverClass) this.element.removeClass(this.options.hoverClass); this._trigger("drop", b, this.ui(d)); return this.element } return false }, ui: function (a) { return { draggable: a.currentItem || a.element, helper: a.helper, position: a.position, offset: a.positionAbs} } }); a.extend(a.ui.droppable, { version: "1.8.15" }); a.ui.intersect = function (b, c, d) { if (!c.offset) return false; var e = (b.positionAbs || b.position.absolute).left, f = e + b.helperProportions.width, g = (b.positionAbs || b.position.absolute).top, h = g + b.helperProportions.height; var i = c.offset.left, j = i + c.proportions.width, k = c.offset.top, l = k + c.proportions.height; switch (d) { case "fit": return i <= e && f <= j && k <= g && h <= l; break; case "intersect": return i < e + b.helperProportions.width / 2 && f - b.helperProportions.width / 2 < j && k < g + b.helperProportions.height / 2 && h - b.helperProportions.height / 2 < l; break; case "pointer": var m = (b.positionAbs || b.position.absolute).left + (b.clickOffset || b.offset.click).left, n = (b.positionAbs || b.position.absolute).top + (b.clickOffset || b.offset.click).top, o = a.ui.isOver(n, m, k, i, c.proportions.height, c.proportions.width); return o; break; case "touch": return (g >= k && g <= l || h >= k && h <= l || g < k && h > l) && (e >= i && e <= j || f >= i && f <= j || e < i && f > j); break; default: return false; break } }; a.ui.ddmanager = { current: null, droppables: { "default": [] }, prepareOffsets: function (b, c) { var d = a.ui.ddmanager.droppables[b.options.scope] || []; var e = c ? c.type : null; var f = (b.currentItem || b.element).find(":data(droppable)").andSelf(); droppablesLoop: for (var g = 0; g < d.length; g++) { if (d[g].options.disabled || b && !d[g].accept.call(d[g].element[0], b.currentItem || b.element)) continue; for (var h = 0; h < f.length; h++) { if (f[h] == d[g].element[0]) { d[g].proportions.height = 0; continue droppablesLoop } } d[g].visible = d[g].element.css("display") != "none"; if (!d[g].visible) continue; if (e == "mousedown") d[g]._activate.call(d[g], c); d[g].offset = d[g].element.offset(); d[g].proportions = { width: d[g].element[0].offsetWidth, height: d[g].element[0].offsetHeight} } }, drop: function (b, c) { var d = false; a.each(a.ui.ddmanager.droppables[b.options.scope] || [], function () { if (!this.options) return; if (!this.options.disabled && this.visible && a.ui.intersect(b, this, this.options.tolerance)) d = d || this._drop.call(this, c); if (!this.options.disabled && this.visible && this.accept.call(this.element[0], b.currentItem || b.element)) { this.isout = 1; this.isover = 0; this._deactivate.call(this, c) } }); return d }, dragStart: function (b, c) { b.element.parentsUntil("body").bind("scroll.droppable", function () { if (!b.options.refreshPositions) a.ui.ddmanager.prepareOffsets(b, c) }) }, drag: function (b, c) { if (b.options.refreshPositions) a.ui.ddmanager.prepareOffsets(b, c); a.each(a.ui.ddmanager.droppables[b.options.scope] || [], function () { if (this.options.disabled || this.greedyChild || !this.visible) return; var d = a.ui.intersect(b, this, this.options.tolerance); var e = !d && this.isover == 1 ? "isout" : d && this.isover == 0 ? "isover" : null; if (!e) return; var f; if (this.options.greedy) { var g = this.element.parents(":data(droppable):eq(0)"); if (g.length) { f = a.data(g[0], "droppable"); f.greedyChild = e == "isover" ? 1 : 0 } } if (f && e == "isover") { f["isover"] = 0; f["isout"] = 1; f._out.call(f, c) } this[e] = 1; this[e == "isout" ? "isover" : "isout"] = 0; this[e == "isover" ? "_over" : "_out"].call(this, c); if (f && e == "isout") { f["isout"] = 0; f["isover"] = 1; f._over.call(f, c) } }) }, dragStop: function (b, c) { b.element.parentsUntil("body").unbind("scroll.droppable"); if (!b.options.refreshPositions) a.ui.ddmanager.prepareOffsets(b, c) } } })(jQuery); (function (a, b) { a.widget("ui.resizable", a.ui.mouse, { widgetEventPrefix: "resize", options: { alsoResize: false, animate: false, animateDuration: "slow", animateEasing: "swing", aspectRatio: false, autoHide: false, containment: false, ghost: false, grid: false, handles: "e,s,se", helper: false, maxHeight: null, maxWidth: null, minHeight: 10, minWidth: 10, zIndex: 1e3 }, _create: function () { var b = this, c = this.options; this.element.addClass("ui-resizable"); a.extend(this, { _aspectRatio: !!c.aspectRatio, aspectRatio: c.aspectRatio, originalElement: this.element, _proportionallyResizeElements: [], _helper: c.helper || c.ghost || c.animate ? c.helper || "ui-resizable-helper" : null }); if (this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)) { if (/relative/.test(this.element.css("position")) && a.browser.opera) this.element.css({ position: "relative", top: "auto", left: "auto" }); this.element.wrap(a('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({ position: this.element.css("position"), width: this.element.outerWidth(), height: this.element.outerHeight(), top: this.element.css("top"), left: this.element.css("left") })); this.element = this.element.parent().data("resizable", this.element.data("resizable")); this.elementIsWrapper = true; this.element.css({ marginLeft: this.originalElement.css("marginLeft"), marginTop: this.originalElement.css("marginTop"), marginRight: this.originalElement.css("marginRight"), marginBottom: this.originalElement.css("marginBottom") }); this.originalElement.css({ marginLeft: 0, marginTop: 0, marginRight: 0, marginBottom: 0 }); this.originalResizeStyle = this.originalElement.css("resize"); this.originalElement.css("resize", "none"); this._proportionallyResizeElements.push(this.originalElement.css({ position: "static", zoom: 1, display: "block" })); this.originalElement.css({ margin: this.originalElement.css("margin") }); this._proportionallyResize() } this.handles = c.handles || (!a(".ui-resizable-handle", this.element).length ? "e,s,se" : { n: ".ui-resizable-n", e: ".ui-resizable-e", s: ".ui-resizable-s", w: ".ui-resizable-w", se: ".ui-resizable-se", sw: ".ui-resizable-sw", ne: ".ui-resizable-ne", nw: ".ui-resizable-nw" }); if (this.handles.constructor == String) { if (this.handles == "all") this.handles = "n,e,s,w,se,sw,ne,nw"; var d = this.handles.split(","); this.handles = {}; for (var e = 0; e < d.length; e++) { var f = a.trim(d[e]), g = "ui-resizable-" + f; var h = a('<div class="ui-resizable-handle ' + g + '"></div>'); if (/sw|se|ne|nw/.test(f)) h.css({ zIndex: ++c.zIndex }); if ("se" == f) { h.addClass("ui-icon ui-icon-gripsmall-diagonal-se") } this.handles[f] = ".ui-resizable-" + f; this.element.append(h) } } this._renderAxis = function (b) { b = b || this.element; for (var c in this.handles) { if (this.handles[c].constructor == String) this.handles[c] = a(this.handles[c], this.element).show(); if (this.elementIsWrapper && this.originalElement[0].nodeName.match(/textarea|input|select|button/i)) { var d = a(this.handles[c], this.element), e = 0; e = /sw|ne|nw|se|n|s/.test(c) ? d.outerHeight() : d.outerWidth(); var f = ["padding", /ne|nw|n/.test(c) ? "Top" : /se|sw|s/.test(c) ? "Bottom" : /^e$/.test(c) ? "Right" : "Left"].join(""); b.css(f, e); this._proportionallyResize() } if (!a(this.handles[c]).length) continue } }; this._renderAxis(this.element); this._handles = a(".ui-resizable-handle", this.element).disableSelection(); this._handles.mouseover(function () { if (!b.resizing) { if (this.className) var a = this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i); b.axis = a && a[1] ? a[1] : "se" } }); if (c.autoHide) { this._handles.hide(); a(this.element).addClass("ui-resizable-autohide").hover(function () { if (c.disabled) return; a(this).removeClass("ui-resizable-autohide"); b._handles.show() }, function () { if (c.disabled) return; if (!b.resizing) { a(this).addClass("ui-resizable-autohide"); b._handles.hide() } }) } this._mouseInit() }, destroy: function () { this._mouseDestroy(); var b = function (b) { a(b).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove() }; if (this.elementIsWrapper) { b(this.element); var c = this.element; c.after(this.originalElement.css({ position: c.css("position"), width: c.outerWidth(), height: c.outerHeight(), top: c.css("top"), left: c.css("left") })).remove() } this.originalElement.css("resize", this.originalResizeStyle); b(this.originalElement); return this }, _mouseCapture: function (b) { var c = false; for (var d in this.handles) { if (a(this.handles[d])[0] == b.target) { c = true } } return !this.options.disabled && c }, _mouseStart: function (b) { var d = this.options, e = this.element.position(), f = this.element; this.resizing = true; this.documentScroll = { top: a(document).scrollTop(), left: a(document).scrollLeft() }; if (f.is(".ui-draggable") || /absolute/.test(f.css("position"))) { f.css({ position: "absolute", top: e.top, left: e.left }) } if (a.browser.opera && /relative/.test(f.css("position"))) f.css({ position: "relative", top: "auto", left: "auto" }); this._renderProxy(); var g = c(this.helper.css("left")), h = c(this.helper.css("top")); if (d.containment) { g += a(d.containment).scrollLeft() || 0; h += a(d.containment).scrollTop() || 0 } this.offset = this.helper.offset(); this.position = { left: g, top: h }; this.size = this._helper ? { width: f.outerWidth(), height: f.outerHeight()} : { width: f.width(), height: f.height() }; this.originalSize = this._helper ? { width: f.outerWidth(), height: f.outerHeight()} : { width: f.width(), height: f.height() }; this.originalPosition = { left: g, top: h }; this.sizeDiff = { width: f.outerWidth() - f.width(), height: f.outerHeight() - f.height() }; this.originalMousePosition = { left: b.pageX, top: b.pageY }; this.aspectRatio = typeof d.aspectRatio == "number" ? d.aspectRatio : this.originalSize.width / this.originalSize.height || 1; var i = a(".ui-resizable-" + this.axis).css("cursor"); a("body").css("cursor", i == "auto" ? this.axis + "-resize" : i); f.addClass("ui-resizable-resizing"); this._propagate("start", b); return true }, _mouseDrag: function (b) { var c = this.helper, d = this.options, e = {}, f = this, g = this.originalMousePosition, h = this.axis; var i = b.pageX - g.left || 0, j = b.pageY - g.top || 0; var k = this._change[h]; if (!k) return false; var l = k.apply(this, [b, i, j]), m = a.browser.msie && a.browser.version < 7, n = this.sizeDiff; this._updateVirtualBoundaries(b.shiftKey); if (this._aspectRatio || b.shiftKey) l = this._updateRatio(l, b); l = this._respectSize(l, b); this._propagate("resize", b); c.css({ top: this.position.top + "px", left: this.position.left + "px", width: this.size.width + "px", height: this.size.height + "px" }); if (!this._helper && this._proportionallyResizeElements.length) this._proportionallyResize(); this._updateCache(l); this._trigger("resize", b, this.ui()); return false }, _mouseStop: function (b) { this.resizing = false; var c = this.options, d = this; if (this._helper) { var e = this._proportionallyResizeElements, f = e.length && /textarea/i.test(e[0].nodeName), g = f && a.ui.hasScroll(e[0], "left") ? 0 : d.sizeDiff.height, h = f ? 0 : d.sizeDiff.width; var i = { width: d.helper.width() - h, height: d.helper.height() - g }, j = parseInt(d.element.css("left"), 10) + (d.position.left - d.originalPosition.left) || null, k = parseInt(d.element.css("top"), 10) + (d.position.top - d.originalPosition.top) || null; if (!c.animate) this.element.css(a.extend(i, { top: k, left: j })); d.helper.height(d.size.height); d.helper.width(d.size.width); if (this._helper && !c.animate) this._proportionallyResize() } a("body").css("cursor", "auto"); this.element.removeClass("ui-resizable-resizing"); this._propagate("stop", b); if (this._helper) this.helper.remove(); return false }, _updateVirtualBoundaries: function (a) { var b = this.options, c, e, f, g, h; h = { minWidth: d(b.minWidth) ? b.minWidth : 0, maxWidth: d(b.maxWidth) ? b.maxWidth : Infinity, minHeight: d(b.minHeight) ? b.minHeight : 0, maxHeight: d(b.maxHeight) ? b.maxHeight : Infinity }; if (this._aspectRatio || a) { c = h.minHeight * this.aspectRatio; f = h.minWidth / this.aspectRatio; e = h.maxHeight * this.aspectRatio; g = h.maxWidth / this.aspectRatio; if (c > h.minWidth) h.minWidth = c; if (f > h.minHeight) h.minHeight = f; if (e < h.maxWidth) h.maxWidth = e; if (g < h.maxHeight) h.maxHeight = g } this._vBoundaries = h }, _updateCache: function (a) { var b = this.options; this.offset = this.helper.offset(); if (d(a.left)) this.position.left = a.left; if (d(a.top)) this.position.top = a.top; if (d(a.height)) this.size.height = a.height; if (d(a.width)) this.size.width = a.width }, _updateRatio: function (a, b) { var c = this.options, e = this.position, f = this.size, g = this.axis; if (d(a.height)) a.width = a.height * this.aspectRatio; else if (d(a.width)) a.height = a.width / this.aspectRatio; if (g == "sw") { a.left = e.left + (f.width - a.width); a.top = null } if (g == "nw") { a.top = e.top + (f.height - a.height); a.left = e.left + (f.width - a.width) } return a }, _respectSize: function (a, b) { var c = this.helper, e = this._vBoundaries, f = this._aspectRatio || b.shiftKey, g = this.axis, h = d(a.width) && e.maxWidth && e.maxWidth < a.width, i = d(a.height) && e.maxHeight && e.maxHeight < a.height, j = d(a.width) && e.minWidth && e.minWidth > a.width, k = d(a.height) && e.minHeight && e.minHeight > a.height; if (j) a.width = e.minWidth; if (k) a.height = e.minHeight; if (h) a.width = e.maxWidth; if (i) a.height = e.maxHeight; var l = this.originalPosition.left + this.originalSize.width, m = this.position.top + this.size.height; var n = /sw|nw|w/.test(g), o = /nw|ne|n/.test(g); if (j && n) a.left = l - e.minWidth; if (h && n) a.left = l - e.maxWidth; if (k && o) a.top = m - e.minHeight; if (i && o) a.top = m - e.maxHeight; var p = !a.width && !a.height; if (p && !a.left && a.top) a.top = null; else if (p && !a.top && a.left) a.left = null; return a }, _proportionallyResize: function () { var b = this.options; if (!this._proportionallyResizeElements.length) return; var c = this.helper || this.element; for (var d = 0; d < this._proportionallyResizeElements.length; d++) { var e = this._proportionallyResizeElements[d]; if (!this.borderDif) { var f = [e.css("borderTopWidth"), e.css("borderRightWidth"), e.css("borderBottomWidth"), e.css("borderLeftWidth")], g = [e.css("paddingTop"), e.css("paddingRight"), e.css("paddingBottom"), e.css("paddingLeft")]; this.borderDif = a.map(f, function (a, b) { var c = parseInt(a, 10) || 0, d = parseInt(g[b], 10) || 0; return c + d }) } if (a.browser.msie && !!(a(c).is(":hidden") || a(c).parents(":hidden").length)) continue; e.css({ height: c.height() - this.borderDif[0] - this.borderDif[2] || 0, width: c.width() - this.borderDif[1] - this.borderDif[3] || 0 }) } }, _renderProxy: function () { var b = this.element, c = this.options; this.elementOffset = b.offset(); if (this._helper) { this.helper = this.helper || a('<div style="overflow:hidden;"></div>'); var d = a.browser.msie && a.browser.version < 7, e = d ? 1 : 0, f = d ? 2 : -1; this.helper.addClass(this._helper).css({ width: this.element.outerWidth() + f, height: this.element.outerHeight() + f, position: "absolute", left: this.elementOffset.left - e + "px", top: this.elementOffset.top - e + "px", zIndex: ++c.zIndex }); this.helper.appendTo("body").disableSelection() } else { this.helper = this.element } }, _change: { e: function (a, b, c) { return { width: this.originalSize.width + b} }, w: function (a, b, c) { var d = this.options, e = this.originalSize, f = this.originalPosition; return { left: f.left + b, width: e.width - b} }, n: function (a, b, c) { var d = this.options, e = this.originalSize, f = this.originalPosition; return { top: f.top + c, height: e.height - c} }, s: function (a, b, c) { return { height: this.originalSize.height + c} }, se: function (b, c, d) { return a.extend(this._change.s.apply(this, arguments), this._change.e.apply(this, [b, c, d])) }, sw: function (b, c, d) { return a.extend(this._change.s.apply(this, arguments), this._change.w.apply(this, [b, c, d])) }, ne: function (b, c, d) { return a.extend(this._change.n.apply(this, arguments), this._change.e.apply(this, [b, c, d])) }, nw: function (b, c, d) { return a.extend(this._change.n.apply(this, arguments), this._change.w.apply(this, [b, c, d])) } }, _propagate: function (b, c) { a.ui.plugin.call(this, b, [c, this.ui()]); b != "resize" && this._trigger(b, c, this.ui()) }, plugins: {}, ui: function () { return { originalElement: this.originalElement, element: this.element, helper: this.helper, position: this.position, size: this.size, originalSize: this.originalSize, originalPosition: this.originalPosition} } }); a.extend(a.ui.resizable, { version: "1.8.15" }); a.ui.plugin.add("resizable", "alsoResize", { start: function (b, c) { var d = a(this).data("resizable"), e = d.options; var f = function (b) { a(b).each(function () { var b = a(this); b.data("resizable-alsoresize", { width: parseInt(b.width(), 10), height: parseInt(b.height(), 10), left: parseInt(b.css("left"), 10), top: parseInt(b.css("top"), 10), position: b.css("position") }) }) }; if (typeof e.alsoResize == "object" && !e.alsoResize.parentNode) { if (e.alsoResize.length) { e.alsoResize = e.alsoResize[0]; f(e.alsoResize) } else { a.each(e.alsoResize, function (a) { f(a) }) } } else { f(e.alsoResize) } }, resize: function (b, c) { var d = a(this).data("resizable"), e = d.options, f = d.originalSize, g = d.originalPosition; var h = { height: d.size.height - f.height || 0, width: d.size.width - f.width || 0, top: d.position.top - g.top || 0, left: d.position.left - g.left || 0 }, i = function (b, e) { a(b).each(function () { var b = a(this), f = a(this).data("resizable-alsoresize"), g = {}, i = e && e.length ? e : b.parents(c.originalElement[0]).length ? ["width", "height"] : ["width", "height", "top", "left"]; a.each(i, function (a, b) { var c = (f[b] || 0) + (h[b] || 0); if (c && c >= 0) g[b] = c || null }); if (a.browser.opera && /relative/.test(b.css("position"))) { d._revertToRelativePosition = true; b.css({ position: "absolute", top: "auto", left: "auto" }) } b.css(g) }) }; if (typeof e.alsoResize == "object" && !e.alsoResize.nodeType) { a.each(e.alsoResize, function (a, b) { i(a, b) }) } else { i(e.alsoResize) } }, stop: function (b, c) { var d = a(this).data("resizable"), e = d.options; var f = function (b) { a(b).each(function () { var b = a(this); b.css({ position: b.data("resizable-alsoresize").position }) }) }; if (d._revertToRelativePosition) { d._revertToRelativePosition = false; if (typeof e.alsoResize == "object" && !e.alsoResize.nodeType) { a.each(e.alsoResize, function (a) { f(a) }) } else { f(e.alsoResize) } } a(this).removeData("resizable-alsoresize") } }); a.ui.plugin.add("resizable", "animate", { stop: function (b, c) { var d = a(this).data("resizable"), e = d.options; var f = d._proportionallyResizeElements, g = f.length && /textarea/i.test(f[0].nodeName), h = g && a.ui.hasScroll(f[0], "left") ? 0 : d.sizeDiff.height, i = g ? 0 : d.sizeDiff.width; var j = { width: d.size.width - i, height: d.size.height - h }, k = parseInt(d.element.css("left"), 10) + (d.position.left - d.originalPosition.left) || null, l = parseInt(d.element.css("top"), 10) + (d.position.top - d.originalPosition.top) || null; d.element.animate(a.extend(j, l && k ? { top: l, left: k} : {}), { duration: e.animateDuration, easing: e.animateEasing, step: function () { var c = { width: parseInt(d.element.css("width"), 10), height: parseInt(d.element.css("height"), 10), top: parseInt(d.element.css("top"), 10), left: parseInt(d.element.css("left"), 10) }; if (f && f.length) a(f[0]).css({ width: c.width, height: c.height }); d._updateCache(c); d._propagate("resize", b) } }) } }); a.ui.plugin.add("resizable", "containment", { start: function (b, d) { var e = a(this).data("resizable"), f = e.options, g = e.element; var h = f.containment, i = h instanceof a ? h.get(0) : /parent/.test(h) ? g.parent().get(0) : h; if (!i) return; e.containerElement = a(i); if (/document/.test(h) || h == document) { e.containerOffset = { left: 0, top: 0 }; e.containerPosition = { left: 0, top: 0 }; e.parentData = { element: a(document), left: 0, top: 0, width: a(document).width(), height: a(document).height() || document.body.parentNode.scrollHeight} } else { var j = a(i), k = []; a(["Top", "Right", "Left", "Bottom"]).each(function (a, b) { k[a] = c(j.css("padding" + b)) }); e.containerOffset = j.offset(); e.containerPosition = j.position(); e.containerSize = { height: j.innerHeight() - k[3], width: j.innerWidth() - k[1] }; var l = e.containerOffset, m = e.containerSize.height, n = e.containerSize.width, o = a.ui.hasScroll(i, "left") ? i.scrollWidth : n, p = a.ui.hasScroll(i) ? i.scrollHeight : m; e.parentData = { element: i, left: l.left, top: l.top, width: o, height: p} } }, resize: function (b, c) { var d = a(this).data("resizable"), e = d.options, f = d.containerSize, g = d.containerOffset, h = d.size, i = d.position, j = d._aspectRatio || b.shiftKey, k = { top: 0, left: 0 }, l = d.containerElement; if (l[0] != document && /static/.test(l.css("position"))) k = g; if (i.left < (d._helper ? g.left : 0)) { d.size.width = d.size.width + (d._helper ? d.position.left - g.left : d.position.left - k.left); if (j) d.size.height = d.size.width / e.aspectRatio; d.position.left = e.helper ? g.left : 0 } if (i.top < (d._helper ? g.top : 0)) { d.size.height = d.size.height + (d._helper ? d.position.top - g.top : d.position.top); if (j) d.size.width = d.size.height * e.aspectRatio; d.position.top = d._helper ? g.top : 0 } d.offset.left = d.parentData.left + d.position.left; d.offset.top = d.parentData.top + d.position.top; var m = Math.abs((d._helper ? d.offset.left - k.left : d.offset.left - k.left) + d.sizeDiff.width), n = Math.abs((d._helper ? d.offset.top - k.top : d.offset.top - g.top) + d.sizeDiff.height); var o = d.containerElement.get(0) == d.element.parent().get(0), p = /relative|absolute/.test(d.containerElement.css("position")); if (o && p) m -= d.parentData.left; if (m + d.size.width >= d.parentData.width) { d.size.width = d.parentData.width - m; if (j) d.size.height = d.size.width / d.aspectRatio } if (n + d.size.height >= d.parentData.height) { d.size.height = d.parentData.height - n; if (j) d.size.width = d.size.height * d.aspectRatio } }, stop: function (b, c) { var d = a(this).data("resizable"), e = d.options, f = d.position, g = d.containerOffset, h = d.containerPosition, i = d.containerElement; var j = a(d.helper), k = j.offset(), l = j.outerWidth() - d.sizeDiff.width, m = j.outerHeight() - d.sizeDiff.height; if (d._helper && !e.animate && /relative/.test(i.css("position"))) a(this).css({ left: k.left - h.left - g.left, width: l, height: m }); if (d._helper && !e.animate && /static/.test(i.css("position"))) a(this).css({ left: k.left - h.left - g.left, width: l, height: m }) } }); a.ui.plugin.add("resizable", "ghost", { start: function (b, c) { var d = a(this).data("resizable"), e = d.options, f = d.size; d.ghost = d.originalElement.clone(); d.ghost.css({ opacity: .25, display: "block", position: "relative", height: f.height, width: f.width, margin: 0, left: 0, top: 0 }).addClass("ui-resizable-ghost").addClass(typeof e.ghost == "string" ? e.ghost : ""); d.ghost.appendTo(d.helper) }, resize: function (b, c) { var d = a(this).data("resizable"), e = d.options; if (d.ghost) d.ghost.css({ position: "relative", height: d.size.height, width: d.size.width }) }, stop: function (b, c) { var d = a(this).data("resizable"), e = d.options; if (d.ghost && d.helper) d.helper.get(0).removeChild(d.ghost.get(0)) } }); a.ui.plugin.add("resizable", "grid", { resize: function (b, c) { var d = a(this).data("resizable"), e = d.options, f = d.size, g = d.originalSize, h = d.originalPosition, i = d.axis, j = e._aspectRatio || b.shiftKey; e.grid = typeof e.grid == "number" ? [e.grid, e.grid] : e.grid; var k = Math.round((f.width - g.width) / (e.grid[0] || 1)) * (e.grid[0] || 1), l = Math.round((f.height - g.height) / (e.grid[1] || 1)) * (e.grid[1] || 1); if (/^(se|s|e)$/.test(i)) { d.size.width = g.width + k; d.size.height = g.height + l } else if (/^(ne)$/.test(i)) { d.size.width = g.width + k; d.size.height = g.height + l; d.position.top = h.top - l } else if (/^(sw)$/.test(i)) { d.size.width = g.width + k; d.size.height = g.height + l; d.position.left = h.left - k } else { d.size.width = g.width + k; d.size.height = g.height + l; d.position.top = h.top - l; d.position.left = h.left - k } } }); var c = function (a) { return parseInt(a, 10) || 0 }; var d = function (a) { return !isNaN(parseInt(a, 10)) } })(jQuery); (function (a, b) { a.widget("ui.selectable", a.ui.mouse, { options: { appendTo: "body", autoRefresh: true, distance: 0, filter: "*", tolerance: "touch" }, _create: function () { var b = this; this.element.addClass("ui-selectable"); this.dragged = false; var c; this.refresh = function () { c = a(b.options.filter, b.element[0]); c.each(function () { var b = a(this); var c = b.offset(); a.data(this, "selectable-item", { element: this, $element: b, left: c.left, top: c.top, right: c.left + b.outerWidth(), bottom: c.top + b.outerHeight(), startselected: false, selected: b.hasClass("ui-selected"), selecting: b.hasClass("ui-selecting"), unselecting: b.hasClass("ui-unselecting") }) }) }; this.refresh(); this.selectees = c.addClass("ui-selectee"); this._mouseInit(); this.helper = a("<div class='ui-selectable-helper'></div>") }, destroy: function () { this.selectees.removeClass("ui-selectee").removeData("selectable-item"); this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable"); this._mouseDestroy(); return this }, _mouseStart: function (b) { var c = this; this.opos = [b.pageX, b.pageY]; if (this.options.disabled) return; var d = this.options; this.selectees = a(d.filter, this.element[0]); this._trigger("start", b); a(d.appendTo).append(this.helper); this.helper.css({ left: b.clientX, top: b.clientY, width: 0, height: 0 }); if (d.autoRefresh) { this.refresh() } this.selectees.filter(".ui-selected").each(function () { var d = a.data(this, "selectable-item"); d.startselected = true; if (!b.metaKey) { d.$element.removeClass("ui-selected"); d.selected = false; d.$element.addClass("ui-unselecting"); d.unselecting = true; c._trigger("unselecting", b, { unselecting: d.element }) } }); a(b.target).parents().andSelf().each(function () { var d = a.data(this, "selectable-item"); if (d) { var e = !b.metaKey || !d.$element.hasClass("ui-selected"); d.$element.removeClass(e ? "ui-unselecting" : "ui-selected").addClass(e ? "ui-selecting" : "ui-unselecting"); d.unselecting = !e; d.selecting = e; d.selected = e; if (e) { c._trigger("selecting", b, { selecting: d.element }) } else { c._trigger("unselecting", b, { unselecting: d.element }) } return false } }) }, _mouseDrag: function (b) { var c = this; this.dragged = true; if (this.options.disabled) return; var d = this.options; var e = this.opos[0], f = this.opos[1], g = b.pageX, h = b.pageY; if (e > g) { var i = g; g = e; e = i } if (f > h) { var i = h; h = f; f = i } this.helper.css({ left: e, top: f, width: g - e, height: h - f }); this.selectees.each(function () { var i = a.data(this, "selectable-item"); if (!i || i.element == c.element[0]) return; var j = false; if (d.tolerance == "touch") { j = !(i.left > g || i.right < e || i.top > h || i.bottom < f) } else if (d.tolerance == "fit") { j = i.left > e && i.right < g && i.top > f && i.bottom < h } if (j) { if (i.selected) { i.$element.removeClass("ui-selected"); i.selected = false } if (i.unselecting) { i.$element.removeClass("ui-unselecting"); i.unselecting = false } if (!i.selecting) { i.$element.addClass("ui-selecting"); i.selecting = true; c._trigger("selecting", b, { selecting: i.element }) } } else { if (i.selecting) { if (b.metaKey && i.startselected) { i.$element.removeClass("ui-selecting"); i.selecting = false; i.$element.addClass("ui-selected"); i.selected = true } else { i.$element.removeClass("ui-selecting"); i.selecting = false; if (i.startselected) { i.$element.addClass("ui-unselecting"); i.unselecting = true } c._trigger("unselecting", b, { unselecting: i.element }) } } if (i.selected) { if (!b.metaKey && !i.startselected) { i.$element.removeClass("ui-selected"); i.selected = false; i.$element.addClass("ui-unselecting"); i.unselecting = true; c._trigger("unselecting", b, { unselecting: i.element }) } } } }); return false }, _mouseStop: function (b) { var c = this; this.dragged = false; var d = this.options; a(".ui-unselecting", this.element[0]).each(function () { var d = a.data(this, "selectable-item"); d.$element.removeClass("ui-unselecting"); d.unselecting = false; d.startselected = false; c._trigger("unselected", b, { unselected: d.element }) }); a(".ui-selecting", this.element[0]).each(function () { var d = a.data(this, "selectable-item"); d.$element.removeClass("ui-selecting").addClass("ui-selected"); d.selecting = false; d.selected = true; d.startselected = true; c._trigger("selected", b, { selected: d.element }) }); this._trigger("stop", b); this.helper.remove(); return false } }); a.extend(a.ui.selectable, { version: "1.8.15" }) })(jQuery); (function (a, b) { a.widget("ui.sortable", a.ui.mouse, { widgetEventPrefix: "sort", options: { appendTo: "parent", axis: false, connectWith: false, containment: false, cursor: "auto", cursorAt: false, dropOnEmpty: true, forcePlaceholderSize: false, forceHelperSize: false, grid: false, handle: false, helper: "original", items: "> *", opacity: false, placeholder: false, revert: false, scroll: true, scrollSensitivity: 20, scrollSpeed: 20, scope: "default", tolerance: "intersect", zIndex: 1e3 }, _create: function () { var a = this.options; this.containerCache = {}; this.element.addClass("ui-sortable"); this.refresh(); this.floating = this.items.length ? a.axis === "x" || /left|right/.test(this.items[0].item.css("float")) || /inline|table-cell/.test(this.items[0].item.css("display")) : false; this.offset = this.element.offset(); this._mouseInit() }, destroy: function () { this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable"); this._mouseDestroy(); for (var a = this.items.length - 1; a >= 0; a--) this.items[a].item.removeData("sortable-item"); return this }, _setOption: function (b, c) { if (b === "disabled") { this.options[b] = c; this.widget()[c ? "addClass" : "removeClass"]("ui-sortable-disabled") } else { a.Widget.prototype._setOption.apply(this, arguments) } }, _mouseCapture: function (b, c) { if (this.reverting) { return false } if (this.options.disabled || this.options.type == "static") return false; this._refreshItems(b); var d = null, e = this, f = a(b.target).parents().each(function () { if (a.data(this, "sortable-item") == e) { d = a(this); return false } }); if (a.data(b.target, "sortable-item") == e) d = a(b.target); if (!d) return false; if (this.options.handle && !c) { var g = false; a(this.options.handle, d).find("*").andSelf().each(function () { if (this == b.target) g = true }); if (!g) return false } this.currentItem = d; this._removeCurrentsFromItems(); return true }, _mouseStart: function (b, c, d) { var e = this.options, f = this; this.currentContainer = this; this.refreshPositions(); this.helper = this._createHelper(b); this._cacheHelperProportions(); this._cacheMargins(); this.scrollParent = this.helper.scrollParent(); this.offset = this.currentItem.offset(); this.offset = { top: this.offset.top - this.margins.top, left: this.offset.left - this.margins.left }; this.helper.css("position", "absolute"); this.cssPosition = this.helper.css("position"); a.extend(this.offset, { click: { left: b.pageX - this.offset.left, top: b.pageY - this.offset.top }, parent: this._getParentOffset(), relative: this._getRelativeOffset() }); this.originalPosition = this._generatePosition(b); this.originalPageX = b.pageX; this.originalPageY = b.pageY; e.cursorAt && this._adjustOffsetFromHelper(e.cursorAt); this.domPosition = { prev: this.currentItem.prev()[0], parent: this.currentItem.parent()[0] }; if (this.helper[0] != this.currentItem[0]) { this.currentItem.hide() } this._createPlaceholder(); if (e.containment) this._setContainment(); if (e.cursor) { if (a("body").css("cursor")) this._storedCursor = a("body").css("cursor"); a("body").css("cursor", e.cursor) } if (e.opacity) { if (this.helper.css("opacity")) this._storedOpacity = this.helper.css("opacity"); this.helper.css("opacity", e.opacity) } if (e.zIndex) { if (this.helper.css("zIndex")) this._storedZIndex = this.helper.css("zIndex"); this.helper.css("zIndex", e.zIndex) } if (this.scrollParent[0] != document && this.scrollParent[0].tagName != "HTML") this.overflowOffset = this.scrollParent.offset(); this._trigger("start", b, this._uiHash()); if (!this._preserveHelperProportions) this._cacheHelperProportions(); if (!d) { for (var g = this.containers.length - 1; g >= 0; g--) { this.containers[g]._trigger("activate", b, f._uiHash(this)) } } if (a.ui.ddmanager) a.ui.ddmanager.current = this; if (a.ui.ddmanager && !e.dropBehaviour) a.ui.ddmanager.prepareOffsets(this, b); this.dragging = true; this.helper.addClass("ui-sortable-helper"); this._mouseDrag(b); return true }, _mouseDrag: function (b) { this.position = this._generatePosition(b); this.positionAbs = this._convertPositionTo("absolute"); if (!this.lastPositionAbs) { this.lastPositionAbs = this.positionAbs } if (this.options.scroll) { var c = this.options, d = false; if (this.scrollParent[0] != document && this.scrollParent[0].tagName != "HTML") { if (this.overflowOffset.top + this.scrollParent[0].offsetHeight - b.pageY < c.scrollSensitivity) this.scrollParent[0].scrollTop = d = this.scrollParent[0].scrollTop + c.scrollSpeed; else if (b.pageY - this.overflowOffset.top < c.scrollSensitivity) this.scrollParent[0].scrollTop = d = this.scrollParent[0].scrollTop - c.scrollSpeed; if (this.overflowOffset.left + this.scrollParent[0].offsetWidth - b.pageX < c.scrollSensitivity) this.scrollParent[0].scrollLeft = d = this.scrollParent[0].scrollLeft + c.scrollSpeed; else if (b.pageX - this.overflowOffset.left < c.scrollSensitivity) this.scrollParent[0].scrollLeft = d = this.scrollParent[0].scrollLeft - c.scrollSpeed } else { if (b.pageY - a(document).scrollTop() < c.scrollSensitivity) d = a(document).scrollTop(a(document).scrollTop() - c.scrollSpeed); else if (a(window).height() - (b.pageY - a(document).scrollTop()) < c.scrollSensitivity) d = a(document).scrollTop(a(document).scrollTop() + c.scrollSpeed); if (b.pageX - a(document).scrollLeft() < c.scrollSensitivity) d = a(document).scrollLeft(a(document).scrollLeft() - c.scrollSpeed); else if (a(window).width() - (b.pageX - a(document).scrollLeft()) < c.scrollSensitivity) d = a(document).scrollLeft(a(document).scrollLeft() + c.scrollSpeed) } if (d !== false && a.ui.ddmanager && !c.dropBehaviour) a.ui.ddmanager.prepareOffsets(this, b) } this.positionAbs = this._convertPositionTo("absolute"); if (!this.options.axis || this.options.axis != "y") this.helper[0].style.left = this.position.left + "px"; if (!this.options.axis || this.options.axis != "x") this.helper[0].style.top = this.position.top + "px"; for (var e = this.items.length - 1; e >= 0; e--) { var f = this.items[e], g = f.item[0], h = this._intersectsWithPointer(f); if (!h) continue; if (g != this.currentItem[0] && this.placeholder[h == 1 ? "next" : "prev"]()[0] != g && !a.ui.contains(this.placeholder[0], g) && (this.options.type == "semi-dynamic" ? !a.ui.contains(this.element[0], g) : true)) { this.direction = h == 1 ? "down" : "up"; if (this.options.tolerance == "pointer" || this._intersectsWithSides(f)) { this._rearrange(b, f) } else { break } this._trigger("change", b, this._uiHash()); break } } this._contactContainers(b); if (a.ui.ddmanager) a.ui.ddmanager.drag(this, b); this._trigger("sort", b, this._uiHash()); this.lastPositionAbs = this.positionAbs; return false }, _mouseStop: function (b, c) { if (!b) return; if (a.ui.ddmanager && !this.options.dropBehaviour) a.ui.ddmanager.drop(this, b); if (this.options.revert) { var d = this; var e = d.placeholder.offset(); d.reverting = true; a(this.helper).animate({ left: e.left - this.offset.parent.left - d.margins.left + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollLeft), top: e.top - this.offset.parent.top - d.margins.top + (this.offsetParent[0] == document.body ? 0 : this.offsetParent[0].scrollTop) }, parseInt(this.options.revert, 10) || 500, function () { d._clear(b) }) } else { this._clear(b, c) } return false }, cancel: function () { var b = this; if (this.dragging) { this._mouseUp({ target: null }); if (this.options.helper == "original") this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper"); else this.currentItem.show(); for (var c = this.containers.length - 1; c >= 0; c--) { this.containers[c]._trigger("deactivate", null, b._uiHash(this)); if (this.containers[c].containerCache.over) { this.containers[c]._trigger("out", null, b._uiHash(this)); this.containers[c].containerCache.over = 0 } } } if (this.placeholder) { if (this.placeholder[0].parentNode) this.placeholder[0].parentNode.removeChild(this.placeholder[0]); if (this.options.helper != "original" && this.helper && this.helper[0].parentNode) this.helper.remove(); a.extend(this, { helper: null, dragging: false, reverting: false, _noFinalSort: null }); if (this.domPosition.prev) { a(this.domPosition.prev).after(this.currentItem) } else { a(this.domPosition.parent).prepend(this.currentItem) } } return this }, serialize: function (b) { var c = this._getItemsAsjQuery(b && b.connected); var d = []; b = b || {}; a(c).each(function () { var c = (a(b.item || this).attr(b.attribute || "id") || "").match(b.expression || /(.+)[-=_](.+)/); if (c) d.push((b.key || c[1] + "[]") + "=" + (b.key && b.expression ? c[1] : c[2])) }); if (!d.length && b.key) { d.push(b.key + "=") } return d.join("&") }, toArray: function (b) { var c = this._getItemsAsjQuery(b && b.connected); var d = []; b = b || {}; c.each(function () { d.push(a(b.item || this).attr(b.attribute || "id") || "") }); return d }, _intersectsWith: function (a) { var b = this.positionAbs.left, c = b + this.helperProportions.width, d = this.positionAbs.top, e = d + this.helperProportions.height; var f = a.left, g = f + a.width, h = a.top, i = h + a.height; var j = this.offset.click.top, k = this.offset.click.left; var l = d + j > h && d + j < i && b + k > f && b + k < g; if (this.options.tolerance == "pointer" || this.options.forcePointerForContainers || this.options.tolerance != "pointer" && this.helperProportions[this.floating ? "width" : "height"] > a[this.floating ? "width" : "height"]) { return l } else { return f < b + this.helperProportions.width / 2 && c - this.helperProportions.width / 2 < g && h < d + this.helperProportions.height / 2 && e - this.helperProportions.height / 2 < i } }, _intersectsWithPointer: function (b) { var c = a.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, b.top, b.height), d = a.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, b.left, b.width), e = c && d, f = this._getDragVerticalDirection(), g = this._getDragHorizontalDirection(); if (!e) return false; return this.floating ? g && g == "right" || f == "down" ? 2 : 1 : f && (f == "down" ? 2 : 1) }, _intersectsWithSides: function (b) { var c = a.ui.isOverAxis(this.positionAbs.top + this.offset.click.top, b.top + b.height / 2, b.height), d = a.ui.isOverAxis(this.positionAbs.left + this.offset.click.left, b.left + b.width / 2, b.width), e = this._getDragVerticalDirection(), f = this._getDragHorizontalDirection(); if (this.floating && f) { return f == "right" && d || f == "left" && !d } else { return e && (e == "down" && c || e == "up" && !c) } }, _getDragVerticalDirection: function () { var a = this.positionAbs.top - this.lastPositionAbs.top; return a != 0 && (a > 0 ? "down" : "up") }, _getDragHorizontalDirection: function () { var a = this.positionAbs.left - this.lastPositionAbs.left; return a != 0 && (a > 0 ? "right" : "left") }, refresh: function (a) { this._refreshItems(a); this.refreshPositions(); return this }, _connectWith: function () { var a = this.options; return a.connectWith.constructor == String ? [a.connectWith] : a.connectWith }, _getItemsAsjQuery: function (b) { var c = this; var d = []; var e = []; var f = this._connectWith(); if (f && b) { for (var g = f.length - 1; g >= 0; g--) { var h = a(f[g]); for (var i = h.length - 1; i >= 0; i--) { var j = a.data(h[i], "sortable"); if (j && j != this && !j.options.disabled) { e.push([a.isFunction(j.options.items) ? j.options.items.call(j.element) : a(j.options.items, j.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"), j]) } } } } e.push([a.isFunction(this.options.items) ? this.options.items.call(this.element, null, { options: this.options, item: this.currentItem }) : a(this.options.items, this.element).not(".ui-sortable-helper").not(".ui-sortable-placeholder"), this]); for (var g = e.length - 1; g >= 0; g--) { e[g][0].each(function () { d.push(this) }) } return a(d) }, _removeCurrentsFromItems: function () { var a = this.currentItem.find(":data(sortable-item)"); for (var b = 0; b < this.items.length; b++) { for (var c = 0; c < a.length; c++) { if (a[c] == this.items[b].item[0]) this.items.splice(b, 1) } } }, _refreshItems: function (b) { this.items = []; this.containers = [this]; var c = this.items; var d = this; var e = [[a.isFunction(this.options.items) ? this.options.items.call(this.element[0], b, { item: this.currentItem }) : a(this.options.items, this.element), this]]; var f = this._connectWith(); if (f) { for (var g = f.length - 1; g >= 0; g--) { var h = a(f[g]); for (var i = h.length - 1; i >= 0; i--) { var j = a.data(h[i], "sortable"); if (j && j != this && !j.options.disabled) { e.push([a.isFunction(j.options.items) ? j.options.items.call(j.element[0], b, { item: this.currentItem }) : a(j.options.items, j.element), j]); this.containers.push(j) } } } } for (var g = e.length - 1; g >= 0; g--) { var k = e[g][1]; var l = e[g][0]; for (var i = 0, m = l.length; i < m; i++) { var n = a(l[i]); n.data("sortable-item", k); c.push({ item: n, instance: k, width: 0, height: 0, left: 0, top: 0 }) } } }, refreshPositions: function (b) { if (this.offsetParent && this.helper) { this.offset.parent = this._getParentOffset() } for (var c = this.items.length - 1; c >= 0; c--) { var d = this.items[c]; if (d.instance != this.currentContainer && this.currentContainer && d.item[0] != this.currentItem[0]) continue; var e = this.options.toleranceElement ? a(this.options.toleranceElement, d.item) : d.item; if (!b) { d.width = e.outerWidth(); d.height = e.outerHeight() } var f = e.offset(); d.left = f.left; d.top = f.top } if (this.options.custom && this.options.custom.refreshContainers) { this.options.custom.refreshContainers.call(this) } else { for (var c = this.containers.length - 1; c >= 0; c--) { var f = this.containers[c].element.offset(); this.containers[c].containerCache.left = f.left; this.containers[c].containerCache.top = f.top; this.containers[c].containerCache.width = this.containers[c].element.outerWidth(); this.containers[c].containerCache.height = this.containers[c].element.outerHeight() } } return this }, _createPlaceholder: function (b) { var c = b || this, d = c.options; if (!d.placeholder || d.placeholder.constructor == String) { var e = d.placeholder; d.placeholder = { element: function () { var b = a(document.createElement(c.currentItem[0].nodeName)).addClass(e || c.currentItem[0].className + " ui-sortable-placeholder").removeClass("ui-sortable-helper")[0]; if (!e) b.style.visibility = "hidden"; return b }, update: function (a, b) { if (e && !d.forcePlaceholderSize) return; if (!b.height()) { b.height(c.currentItem.innerHeight() - parseInt(c.currentItem.css("paddingTop") || 0, 10) - parseInt(c.currentItem.css("paddingBottom") || 0, 10)) } if (!b.width()) { b.width(c.currentItem.innerWidth() - parseInt(c.currentItem.css("paddingLeft") || 0, 10) - parseInt(c.currentItem.css("paddingRight") || 0, 10)) } } } } c.placeholder = a(d.placeholder.element.call(c.element, c.currentItem)); c.currentItem.after(c.placeholder); d.placeholder.update(c, c.placeholder) }, _contactContainers: function (b) { var c = null, d = null; for (var e = this.containers.length - 1; e >= 0; e--) { if (a.ui.contains(this.currentItem[0], this.containers[e].element[0])) continue; if (this._intersectsWith(this.containers[e].containerCache)) { if (c && a.ui.contains(this.containers[e].element[0], c.element[0])) continue; c = this.containers[e]; d = e } else { if (this.containers[e].containerCache.over) { this.containers[e]._trigger("out", b, this._uiHash(this)); this.containers[e].containerCache.over = 0 } } } if (!c) return; if (this.containers.length === 1) { this.containers[d]._trigger("over", b, this._uiHash(this)); this.containers[d].containerCache.over = 1 } else if (this.currentContainer != this.containers[d]) { var f = 1e4; var g = null; var h = this.positionAbs[this.containers[d].floating ? "left" : "top"]; for (var i = this.items.length - 1; i >= 0; i--) { if (!a.ui.contains(this.containers[d].element[0], this.items[i].item[0])) continue; var j = this.items[i][this.containers[d].floating ? "left" : "top"]; if (Math.abs(j - h) < f) { f = Math.abs(j - h); g = this.items[i] } } if (!g && !this.options.dropOnEmpty) return; this.currentContainer = this.containers[d]; g ? this._rearrange(b, g, null, true) : this._rearrange(b, null, this.containers[d].element, true); this._trigger("change", b, this._uiHash()); this.containers[d]._trigger("change", b, this._uiHash(this)); this.options.placeholder.update(this.currentContainer, this.placeholder); this.containers[d]._trigger("over", b, this._uiHash(this)); this.containers[d].containerCache.over = 1 } }, _createHelper: function (b) { var c = this.options; var d = a.isFunction(c.helper) ? a(c.helper.apply(this.element[0], [b, this.currentItem])) : c.helper == "clone" ? this.currentItem.clone() : this.currentItem; if (!d.parents("body").length) a(c.appendTo != "parent" ? c.appendTo : this.currentItem[0].parentNode)[0].appendChild(d[0]); if (d[0] == this.currentItem[0]) this._storedCSS = { width: this.currentItem[0].style.width, height: this.currentItem[0].style.height, position: this.currentItem.css("position"), top: this.currentItem.css("top"), left: this.currentItem.css("left") }; if (d[0].style.width == "" || c.forceHelperSize) d.width(this.currentItem.width()); if (d[0].style.height == "" || c.forceHelperSize) d.height(this.currentItem.height()); return d }, _adjustOffsetFromHelper: function (b) { if (typeof b == "string") { b = b.split(" ") } if (a.isArray(b)) { b = { left: +b[0], top: +b[1] || 0} } if ("left" in b) { this.offset.click.left = b.left + this.margins.left } if ("right" in b) { this.offset.click.left = this.helperProportions.width - b.right + this.margins.left } if ("top" in b) { this.offset.click.top = b.top + this.margins.top } if ("bottom" in b) { this.offset.click.top = this.helperProportions.height - b.bottom + this.margins.top } }, _getParentOffset: function () { this.offsetParent = this.helper.offsetParent(); var b = this.offsetParent.offset(); if (this.cssPosition == "absolute" && this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) { b.left += this.scrollParent.scrollLeft(); b.top += this.scrollParent.scrollTop() } if (this.offsetParent[0] == document.body || this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == "html" && a.browser.msie) b = { top: 0, left: 0 }; return { top: b.top + (parseInt(this.offsetParent.css("borderTopWidth"), 10) || 0), left: b.left + (parseInt(this.offsetParent.css("borderLeftWidth"), 10) || 0)} }, _getRelativeOffset: function () { if (this.cssPosition == "relative") { var a = this.currentItem.position(); return { top: a.top - (parseInt(this.helper.css("top"), 10) || 0) + this.scrollParent.scrollTop(), left: a.left - (parseInt(this.helper.css("left"), 10) || 0) + this.scrollParent.scrollLeft()} } else { return { top: 0, left: 0} } }, _cacheMargins: function () { this.margins = { left: parseInt(this.currentItem.css("marginLeft"), 10) || 0, top: parseInt(this.currentItem.css("marginTop"), 10) || 0} }, _cacheHelperProportions: function () { this.helperProportions = { width: this.helper.outerWidth(), height: this.helper.outerHeight()} }, _setContainment: function () { var b = this.options; if (b.containment == "parent") b.containment = this.helper[0].parentNode; if (b.containment == "document" || b.containment == "window") this.containment = [0 - this.offset.relative.left - this.offset.parent.left, 0 - this.offset.relative.top - this.offset.parent.top, a(b.containment == "document" ? document : window).width() - this.helperProportions.width - this.margins.left, (a(b.containment == "document" ? document : window).height() || document.body.parentNode.scrollHeight) - this.helperProportions.height - this.margins.top]; if (!/^(document|window|parent)$/.test(b.containment)) { var c = a(b.containment)[0]; var d = a(b.containment).offset(); var e = a(c).css("overflow") != "hidden"; this.containment = [d.left + (parseInt(a(c).css("borderLeftWidth"), 10) || 0) + (parseInt(a(c).css("paddingLeft"), 10) || 0) - this.margins.left, d.top + (parseInt(a(c).css("borderTopWidth"), 10) || 0) + (parseInt(a(c).css("paddingTop"), 10) || 0) - this.margins.top, d.left + (e ? Math.max(c.scrollWidth, c.offsetWidth) : c.offsetWidth) - (parseInt(a(c).css("borderLeftWidth"), 10) || 0) - (parseInt(a(c).css("paddingRight"), 10) || 0) - this.helperProportions.width - this.margins.left, d.top + (e ? Math.max(c.scrollHeight, c.offsetHeight) : c.offsetHeight) - (parseInt(a(c).css("borderTopWidth"), 10) || 0) - (parseInt(a(c).css("paddingBottom"), 10) || 0) - this.helperProportions.height - this.margins.top] } }, _convertPositionTo: function (b, c) { if (!c) c = this.position; var d = b == "absolute" ? 1 : -1; var e = this.options, f = this.cssPosition == "absolute" && !(this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, g = /(html|body)/i.test(f[0].tagName); return { top: c.top + this.offset.relative.top * d + this.offset.parent.top * d - (a.browser.safari && this.cssPosition == "fixed" ? 0 : (this.cssPosition == "fixed" ? -this.scrollParent.scrollTop() : g ? 0 : f.scrollTop()) * d), left: c.left + this.offset.relative.left * d + this.offset.parent.left * d - (a.browser.safari && this.cssPosition == "fixed" ? 0 : (this.cssPosition == "fixed" ? -this.scrollParent.scrollLeft() : g ? 0 : f.scrollLeft()) * d)} }, _generatePosition: function (b) { var c = this.options, d = this.cssPosition == "absolute" && !(this.scrollParent[0] != document && a.ui.contains(this.scrollParent[0], this.offsetParent[0])) ? this.offsetParent : this.scrollParent, e = /(html|body)/i.test(d[0].tagName); if (this.cssPosition == "relative" && !(this.scrollParent[0] != document && this.scrollParent[0] != this.offsetParent[0])) { this.offset.relative = this._getRelativeOffset() } var f = b.pageX; var g = b.pageY; if (this.originalPosition) { if (this.containment) { if (b.pageX - this.offset.click.left < this.containment[0]) f = this.containment[0] + this.offset.click.left; if (b.pageY - this.offset.click.top < this.containment[1]) g = this.containment[1] + this.offset.click.top; if (b.pageX - this.offset.click.left > this.containment[2]) f = this.containment[2] + this.offset.click.left; if (b.pageY - this.offset.click.top > this.containment[3]) g = this.containment[3] + this.offset.click.top } if (c.grid) { var h = this.originalPageY + Math.round((g - this.originalPageY) / c.grid[1]) * c.grid[1]; g = this.containment ? !(h - this.offset.click.top < this.containment[1] || h - this.offset.click.top > this.containment[3]) ? h : !(h - this.offset.click.top < this.containment[1]) ? h - c.grid[1] : h + c.grid[1] : h; var i = this.originalPageX + Math.round((f - this.originalPageX) / c.grid[0]) * c.grid[0]; f = this.containment ? !(i - this.offset.click.left < this.containment[0] || i - this.offset.click.left > this.containment[2]) ? i : !(i - this.offset.click.left < this.containment[0]) ? i - c.grid[0] : i + c.grid[0] : i } } return { top: g - this.offset.click.top - this.offset.relative.top - this.offset.parent.top + (a.browser.safari && this.cssPosition == "fixed" ? 0 : this.cssPosition == "fixed" ? -this.scrollParent.scrollTop() : e ? 0 : d.scrollTop()), left: f - this.offset.click.left - this.offset.relative.left - this.offset.parent.left + (a.browser.safari && this.cssPosition == "fixed" ? 0 : this.cssPosition == "fixed" ? -this.scrollParent.scrollLeft() : e ? 0 : d.scrollLeft())} }, _rearrange: function (a, b, c, d) { c ? c[0].appendChild(this.placeholder[0]) : b.item[0].parentNode.insertBefore(this.placeholder[0], this.direction == "down" ? b.item[0] : b.item[0].nextSibling); this.counter = this.counter ? ++this.counter : 1; var e = this, f = this.counter; window.setTimeout(function () { if (f == e.counter) e.refreshPositions(!d) }, 0) }, _clear: function (b, c) { this.reverting = false; var d = [], e = this; if (!this._noFinalSort && this.currentItem.parent().length) this.placeholder.before(this.currentItem); this._noFinalSort = null; if (this.helper[0] == this.currentItem[0]) { for (var f in this._storedCSS) { if (this._storedCSS[f] == "auto" || this._storedCSS[f] == "static") this._storedCSS[f] = "" } this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper") } else { this.currentItem.show() } if (this.fromOutside && !c) d.push(function (a) { this._trigger("receive", a, this._uiHash(this.fromOutside)) }); if ((this.fromOutside || this.domPosition.prev != this.currentItem.prev().not(".ui-sortable-helper")[0] || this.domPosition.parent != this.currentItem.parent()[0]) && !c) d.push(function (a) { this._trigger("update", a, this._uiHash()) }); if (!a.ui.contains(this.element[0], this.currentItem[0])) { if (!c) d.push(function (a) { this._trigger("remove", a, this._uiHash()) }); for (var f = this.containers.length - 1; f >= 0; f--) { if (a.ui.contains(this.containers[f].element[0], this.currentItem[0]) && !c) { d.push(function (a) { return function (b) { a._trigger("receive", b, this._uiHash(this)) } } .call(this, this.containers[f])); d.push(function (a) { return function (b) { a._trigger("update", b, this._uiHash(this)) } } .call(this, this.containers[f])) } } } for (var f = this.containers.length - 1; f >= 0; f--) { if (!c) d.push(function (a) { return function (b) { a._trigger("deactivate", b, this._uiHash(this)) } } .call(this, this.containers[f])); if (this.containers[f].containerCache.over) { d.push(function (a) { return function (b) { a._trigger("out", b, this._uiHash(this)) } } .call(this, this.containers[f])); this.containers[f].containerCache.over = 0 } } if (this._storedCursor) a("body").css("cursor", this._storedCursor); if (this._storedOpacity) this.helper.css("opacity", this._storedOpacity); if (this._storedZIndex) this.helper.css("zIndex", this._storedZIndex == "auto" ? "" : this._storedZIndex); this.dragging = false; if (this.cancelHelperRemoval) { if (!c) { this._trigger("beforeStop", b, this._uiHash()); for (var f = 0; f < d.length; f++) { d[f].call(this, b) } this._trigger("stop", b, this._uiHash()) } return false } if (!c) this._trigger("beforeStop", b, this._uiHash()); this.placeholder[0].parentNode.removeChild(this.placeholder[0]); if (this.helper[0] != this.currentItem[0]) this.helper.remove(); this.helper = null; if (!c) { for (var f = 0; f < d.length; f++) { d[f].call(this, b) } this._trigger("stop", b, this._uiHash()) } this.fromOutside = false; return true }, _trigger: function () { if (a.Widget.prototype._trigger.apply(this, arguments) === false) { this.cancel() } }, _uiHash: function (b) { var c = b || this; return { helper: c.helper, placeholder: c.placeholder || a([]), position: c.position, originalPosition: c.originalPosition, offset: c.positionAbs, item: c.currentItem, sender: b ? b.element : null} } }); a.extend(a.ui.sortable, { version: "1.8.15" }) })(jQuery); (function (a, b) { a.widget("ui.accordion", { options: { active: 0, animated: "slide", autoHeight: true, clearStyle: false, collapsible: false, event: "click", fillSpace: false, header: "> li > :first-child,> :not(li):even", icons: { header: "ui-icon-triangle-1-e", headerSelected: "ui-icon-triangle-1-s" }, navigation: false, navigationFilter: function () { return this.href.toLowerCase() === location.href.toLowerCase() } }, _create: function () { var b = this, c = b.options; b.running = 0; b.element.addClass("ui-accordion ui-widget ui-helper-reset").children("li").addClass("ui-accordion-li-fix"); b.headers = b.element.find(c.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion", function () { if (c.disabled) { return } a(this).addClass("ui-state-hover") }).bind("mouseleave.accordion", function () { if (c.disabled) { return } a(this).removeClass("ui-state-hover") }).bind("focus.accordion", function () { if (c.disabled) { return } a(this).addClass("ui-state-focus") }).bind("blur.accordion", function () { if (c.disabled) { return } a(this).removeClass("ui-state-focus") }); b.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom"); if (c.navigation) { var d = b.element.find("a").filter(c.navigationFilter).eq(0); if (d.length) { var e = d.closest(".ui-accordion-header"); if (e.length) { b.active = e } else { b.active = d.closest(".ui-accordion-content").prev() } } } b.active = b._findActive(b.active || c.active).addClass("ui-state-default ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top"); b.active.next().addClass("ui-accordion-content-active"); b._createIcons(); b.resize(); b.element.attr("role", "tablist"); b.headers.attr("role", "tab").bind("keydown.accordion", function (a) { return b._keydown(a) }).next().attr("role", "tabpanel"); b.headers.not(b.active || "").attr({ "aria-expanded": "false", "aria-selected": "false", tabIndex: -1 }).next().hide(); if (!b.active.length) { b.headers.eq(0).attr("tabIndex", 0) } else { b.active.attr({ "aria-expanded": "true", "aria-selected": "true", tabIndex: 0 }) } if (!a.browser.safari) { b.headers.find("a").attr("tabIndex", -1) } if (c.event) { b.headers.bind(c.event.split(" ").join(".accordion ") + ".accordion", function (a) { b._clickHandler.call(b, a, this); a.preventDefault() }) } }, _createIcons: function () { var b = this.options; if (b.icons) { a("<span></span>").addClass("ui-icon " + b.icons.header).prependTo(this.headers); this.active.children(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected); this.element.addClass("ui-accordion-icons") } }, _destroyIcons: function () { this.headers.children(".ui-icon").remove(); this.element.removeClass("ui-accordion-icons") }, destroy: function () { var b = this.options; this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role"); this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-accordion-disabled ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-state-disabled ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("aria-selected").removeAttr("tabIndex"); this.headers.find("a").removeAttr("tabIndex"); this._destroyIcons(); var c = this.headers.next().css("display", "").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active ui-accordion-disabled ui-state-disabled"); if (b.autoHeight || b.fillHeight) { c.css("height", "") } return a.Widget.prototype.destroy.call(this) }, _setOption: function (b, c) { a.Widget.prototype._setOption.apply(this, arguments); if (b == "active") { this.activate(c) } if (b == "icons") { this._destroyIcons(); if (c) { this._createIcons() } } if (b == "disabled") { this.headers.add(this.headers.next())[c ? "addClass" : "removeClass"]("ui-accordion-disabled ui-state-disabled") } }, _keydown: function (b) { if (this.options.disabled || b.altKey || b.ctrlKey) { return } var c = a.ui.keyCode, d = this.headers.length, e = this.headers.index(b.target), f = false; switch (b.keyCode) { case c.RIGHT: case c.DOWN: f = this.headers[(e + 1) % d]; break; case c.LEFT: case c.UP: f = this.headers[(e - 1 + d) % d]; break; case c.SPACE: case c.ENTER: this._clickHandler({ target: b.target }, b.target); b.preventDefault() } if (f) { a(b.target).attr("tabIndex", -1); a(f).attr("tabIndex", 0); f.focus(); return false } return true }, resize: function () { var b = this.options, c; if (b.fillSpace) { if (a.browser.msie) { var d = this.element.parent().css("overflow"); this.element.parent().css("overflow", "hidden") } c = this.element.parent().height(); if (a.browser.msie) { this.element.parent().css("overflow", d) } this.headers.each(function () { c -= a(this).outerHeight(true) }); this.headers.next().each(function () { a(this).height(Math.max(0, c - a(this).innerHeight() + a(this).height())) }).css("overflow", "auto") } else if (b.autoHeight) { c = 0; this.headers.next().each(function () { c = Math.max(c, a(this).height("").height()) }).height(c) } return this }, activate: function (a) { this.options.active = a; var b = this._findActive(a)[0]; this._clickHandler({ target: b }, b); return this }, _findActive: function (b) { return b ? typeof b === "number" ? this.headers.filter(":eq(" + b + ")") : this.headers.not(this.headers.not(b)) : b === false ? a([]) : this.headers.filter(":eq(0)") }, _clickHandler: function (b, c) { var d = this.options; if (d.disabled) { return } if (!b.target) { if (!d.collapsible) { return } this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header); this.active.next().addClass("ui-accordion-content-active"); var e = this.active.next(), f = { options: d, newHeader: a([]), oldHeader: d.active, newContent: a([]), oldContent: e }, g = this.active = a([]); this._toggle(g, e, f); return } var h = a(b.currentTarget || c), i = h[0] === this.active[0]; d.active = d.collapsible && i ? false : this.headers.index(h); if (this.running || !d.collapsible && i) { return } var j = this.active, g = h.next(), e = this.active.next(), f = { options: d, newHeader: i && d.collapsible ? a([]) : h, oldHeader: this.active, newContent: i && d.collapsible ? a([]) : g, oldContent: e }, k = this.headers.index(this.active[0]) > this.headers.index(h[0]); this.active = i ? a([]) : h; this._toggle(g, e, f, i, k); j.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").children(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header); if (!i) { h.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").children(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected); h.next().addClass("ui-accordion-content-active") } return }, _toggle: function (b, c, d, e, f) { var g = this, h = g.options; g.toShow = b; g.toHide = c; g.data = d; var i = function () { if (!g) { return } return g._completed.apply(g, arguments) }; g._trigger("changestart", null, g.data); g.running = c.size() === 0 ? b.size() : c.size(); if (h.animated) { var j = {}; if (h.collapsible && e) { j = { toShow: a([]), toHide: c, complete: i, down: f, autoHeight: h.autoHeight || h.fillSpace} } else { j = { toShow: b, toHide: c, complete: i, down: f, autoHeight: h.autoHeight || h.fillSpace} } if (!h.proxied) { h.proxied = h.animated } if (!h.proxiedDuration) { h.proxiedDuration = h.duration } h.animated = a.isFunction(h.proxied) ? h.proxied(j) : h.proxied; h.duration = a.isFunction(h.proxiedDuration) ? h.proxiedDuration(j) : h.proxiedDuration; var k = a.ui.accordion.animations, l = h.duration, m = h.animated; if (m && !k[m] && !a.easing[m]) { m = "slide" } if (!k[m]) { k[m] = function (a) { this.slide(a, { easing: m, duration: l || 700 }) } } k[m](j) } else { if (h.collapsible && e) { b.toggle() } else { c.hide(); b.show() } i(true) } c.prev().attr({ "aria-expanded": "false", "aria-selected": "false", tabIndex: -1 }).blur(); b.prev().attr({ "aria-expanded": "true", "aria-selected": "true", tabIndex: 0 }).focus() }, _completed: function (a) { this.running = a ? 0 : --this.running; if (this.running) { return } if (this.options.clearStyle) { this.toShow.add(this.toHide).css({ height: "", overflow: "" }) } this.toHide.removeClass("ui-accordion-content-active"); if (this.toHide.length) { this.toHide.parent()[0].className = this.toHide.parent()[0].className } this._trigger("change", null, this.data) } }); a.extend(a.ui.accordion, { version: "1.8.15", animations: { slide: function (b, c) { b = a.extend({ easing: "swing", duration: 300 }, b, c); if (!b.toHide.size()) { b.toShow.animate({ height: "show", paddingTop: "show", paddingBottom: "show" }, b); return } if (!b.toShow.size()) { b.toHide.animate({ height: "hide", paddingTop: "hide", paddingBottom: "hide" }, b); return } var d = b.toShow.css("overflow"), e = 0, f = {}, g = {}, h = ["height", "paddingTop", "paddingBottom"], i; var j = b.toShow; i = j[0].style.width; j.width(parseInt(j.parent().width(), 10) - parseInt(j.css("paddingLeft"), 10) - parseInt(j.css("paddingRight"), 10) - (parseInt(j.css("borderLeftWidth"), 10) || 0) - (parseInt(j.css("borderRightWidth"), 10) || 0)); a.each(h, function (c, d) { g[d] = "hide"; var e = ("" + a.css(b.toShow[0], d)).match(/^([\d+-.]+)(.*)$/); f[d] = { value: e[1], unit: e[2] || "px"} }); b.toShow.css({ height: 0, overflow: "hidden" }).show(); b.toHide.filter(":hidden").each(b.complete).end().filter(":visible").animate(g, { step: function (a, c) { if (c.prop == "height") { e = c.end - c.start === 0 ? 0 : (c.now - c.start) / (c.end - c.start) } b.toShow[0].style[c.prop] = e * f[c.prop].value + f[c.prop].unit }, duration: b.duration, easing: b.easing, complete: function () { if (!b.autoHeight) { b.toShow.css("height", "") } b.toShow.css({ width: i, overflow: d }); b.complete() } }) }, bounceslide: function (a) { this.slide(a, { easing: a.down ? "easeOutBounce" : "swing", duration: a.down ? 1e3 : 200 }) } } }) })(jQuery); (function (a, b) { var c = 0; a.widget("ui.autocomplete", { options: { appendTo: "body", autoFocus: false, delay: 300, minLength: 1, position: { my: "left top", at: "left bottom", collision: "none" }, source: null }, pending: 0, _create: function () { var b = this, c = this.element[0].ownerDocument, d; this.element.addClass("ui-autocomplete-input").attr("autocomplete", "off").attr({ role: "textbox", "aria-autocomplete": "list", "aria-haspopup": "true" }).bind("keydown.autocomplete", function (c) { if (b.options.disabled || b.element.propAttr("readOnly")) { return } d = false; var e = a.ui.keyCode; switch (c.keyCode) { case e.PAGE_UP: b._move("previousPage", c); break; case e.PAGE_DOWN: b._move("nextPage", c); break; case e.UP: b._move("previous", c); c.preventDefault(); break; case e.DOWN: b._move("next", c); c.preventDefault(); break; case e.ENTER: case e.NUMPAD_ENTER: if (b.menu.active) { d = true; c.preventDefault() }; case e.TAB: if (!b.menu.active) { return } b.menu.select(c); break; case e.ESCAPE: b.element.val(b.term); b.close(c); break; default: clearTimeout(b.searching); b.searching = setTimeout(function () { if (b.term != b.element.val()) { b.selectedItem = null; b.search(null, c) } }, b.options.delay); break } }).bind("keypress.autocomplete", function (a) { if (d) { d = false; a.preventDefault() } }).bind("focus.autocomplete", function () { if (b.options.disabled) { return } b.selectedItem = null; b.previous = b.element.val() }).bind("blur.autocomplete", function (a) { if (b.options.disabled) { return } clearTimeout(b.searching); b.closing = setTimeout(function () { b.close(a); b._change(a) }, 150) }); this._initSource(); this.response = function () { return b._response.apply(b, arguments) }; this.menu = a("<ul></ul>").addClass("ui-autocomplete").appendTo(a(this.options.appendTo || "body", c)[0]).mousedown(function (c) { var d = b.menu.element[0]; if (!a(c.target).closest(".ui-menu-item").length) { setTimeout(function () { a(document).one("mousedown", function (c) { if (c.target !== b.element[0] && c.target !== d && !a.ui.contains(d, c.target)) { b.close() } }) }, 1) } setTimeout(function () { clearTimeout(b.closing) }, 13) }).menu({ focus: function (a, c) { var d = c.item.data("item.autocomplete"); if (false !== b._trigger("focus", a, { item: d })) { if (/^key/.test(a.originalEvent.type)) { b.element.val(d.value) } } }, selected: function (a, d) { var e = d.item.data("item.autocomplete"), f = b.previous; if (b.element[0] !== c.activeElement) { b.element.focus(); b.previous = f; setTimeout(function () { b.previous = f; b.selectedItem = e }, 1) } if (false !== b._trigger("select", a, { item: e })) { b.element.val(e.value) } b.term = b.element.val(); b.close(a); b.selectedItem = e }, blur: function (a, c) { if (b.menu.element.is(":visible") && b.element.val() !== b.term) { b.element.val(b.term) } } }).zIndex(this.element.zIndex() + 1).css({ top: 0, left: 0 }).hide().data("menu"); if (a.fn.bgiframe) { this.menu.element.bgiframe() } }, destroy: function () { this.element.removeClass("ui-autocomplete-input").removeAttr("autocomplete").removeAttr("role").removeAttr("aria-autocomplete").removeAttr("aria-haspopup"); this.menu.element.remove(); a.Widget.prototype.destroy.call(this) }, _setOption: function (b, c) { a.Widget.prototype._setOption.apply(this, arguments); if (b === "source") { this._initSource() } if (b === "appendTo") { this.menu.element.appendTo(a(c || "body", this.element[0].ownerDocument)[0]) } if (b === "disabled" && c && this.xhr) { this.xhr.abort() } }, _initSource: function () { var b = this, d, e; if (a.isArray(this.options.source)) { d = this.options.source; this.source = function (b, c) { c(a.ui.autocomplete.filter(d, b.term)) } } else if (typeof this.options.source === "string") { e = this.options.source; this.source = function (d, f) { if (b.xhr) { b.xhr.abort() } b.xhr = a.ajax({ url: e, data: d, dataType: "json", autocompleteRequest: ++c, success: function (a, b) { if (this.autocompleteRequest === c) { f(a) } }, error: function () { if (this.autocompleteRequest === c) { f([]) } } }) } } else { this.source = this.options.source } }, search: function (a, b) { a = a != null ? a : this.element.val(); this.term = this.element.val(); if (a.length < this.options.minLength) { return this.close(b) } clearTimeout(this.closing); if (this._trigger("search", b) === false) { return } return this._search(a) }, _search: function (a) { this.pending++; this.element.addClass("ui-autocomplete-loading"); this.source({ term: a }, this.response) }, _response: function (a) { if (!this.options.disabled && a && a.length) { a = this._normalize(a); this._suggest(a); this._trigger("open") } else { this.close() } this.pending--; if (!this.pending) { this.element.removeClass("ui-autocomplete-loading") } }, close: function (a) { clearTimeout(this.closing); if (this.menu.element.is(":visible")) { this.menu.element.hide(); this.menu.deactivate(); this._trigger("close", a) } }, _change: function (a) { if (this.previous !== this.element.val()) { this._trigger("change", a, { item: this.selectedItem }) } }, _normalize: function (b) { if (b.length && b[0].label && b[0].value) { return b } return a.map(b, function (b) { if (typeof b === "string") { return { label: b, value: b} } return a.extend({ label: b.label || b.value, value: b.value || b.label }, b) }) }, _suggest: function (b) { var c = this.menu.element.empty().zIndex(this.element.zIndex() + 1); this._renderMenu(c, b); this.menu.deactivate(); this.menu.refresh(); c.show(); this._resizeMenu(); c.position(a.extend({ of: this.element }, this.options.position)); if (this.options.autoFocus) { this.menu.next(new a.Event("mouseover")) } }, _resizeMenu: function () { var a = this.menu.element; a.outerWidth(Math.max(a.width("").outerWidth(), this.element.outerWidth())) }, _renderMenu: function (b, c) { var d = this; a.each(c, function (a, c) { d._renderItem(b, c) }) }, _renderItem: function (b, c) { return a("<li></li>").data("item.autocomplete", c).append(a("<a></a>").text(c.label)).appendTo(b) }, _move: function (a, b) { if (!this.menu.element.is(":visible")) { this.search(null, b); return } if (this.menu.first() && /^previous/.test(a) || this.menu.last() && /^next/.test(a)) { this.element.val(this.term); this.menu.deactivate(); return } this.menu[a](b) }, widget: function () { return this.menu.element } }); a.extend(a.ui.autocomplete, { escapeRegex: function (a) { return a.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&") }, filter: function (b, c) { var d = new RegExp(a.ui.autocomplete.escapeRegex(c), "i"); return a.grep(b, function (a) { return d.test(a.label || a.value || a) }) } }) })(jQuery); (function (a) { a.widget("ui.menu", { _create: function () { var b = this; this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({ role: "listbox", "aria-activedescendant": "ui-active-menuitem" }).click(function (c) { if (!a(c.target).closest(".ui-menu-item a").length) { return } c.preventDefault(); b.select(c) }); this.refresh() }, refresh: function () { var b = this; var c = this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role", "menuitem"); c.children("a").addClass("ui-corner-all").attr("tabindex", -1).mouseenter(function (c) { b.activate(c, a(this).parent()) }).mouseleave(function () { b.deactivate() }) }, activate: function (a, b) { this.deactivate(); if (this.hasScroll()) { var c = b.offset().top - this.element.offset().top, d = this.element.scrollTop(), e = this.element.height(); if (c < 0) { this.element.scrollTop(d + c) } else if (c >= e) { this.element.scrollTop(d + c - e + b.height()) } } this.active = b.eq(0).children("a").addClass("ui-state-hover").attr("id", "ui-active-menuitem").end(); this._trigger("focus", a, { item: b }) }, deactivate: function () { if (!this.active) { return } this.active.children("a").removeClass("ui-state-hover").removeAttr("id"); this._trigger("blur"); this.active = null }, next: function (a) { this.move("next", ".ui-menu-item:first", a) }, previous: function (a) { this.move("prev", ".ui-menu-item:last", a) }, first: function () { return this.active && !this.active.prevAll(".ui-menu-item").length }, last: function () { return this.active && !this.active.nextAll(".ui-menu-item").length }, move: function (a, b, c) { if (!this.active) { this.activate(c, this.element.children(b)); return } var d = this.active[a + "All"](".ui-menu-item").eq(0); if (d.length) { this.activate(c, d) } else { this.activate(c, this.element.children(b)) } }, nextPage: function (b) { if (this.hasScroll()) { if (!this.active || this.last()) { this.activate(b, this.element.children(".ui-menu-item:first")); return } var c = this.active.offset().top, d = this.element.height(), e = this.element.children(".ui-menu-item").filter(function () { var b = a(this).offset().top - c - d + a(this).height(); return b < 10 && b > -10 }); if (!e.length) { e = this.element.children(".ui-menu-item:last") } this.activate(b, e) } else { this.activate(b, this.element.children(".ui-menu-item").filter(!this.active || this.last() ? ":first" : ":last")) } }, previousPage: function (b) { if (this.hasScroll()) { if (!this.active || this.first()) { this.activate(b, this.element.children(".ui-menu-item:last")); return } var c = this.active.offset().top, d = this.element.height(); result = this.element.children(".ui-menu-item").filter(function () { var b = a(this).offset().top - c + d - a(this).height(); return b < 10 && b > -10 }); if (!result.length) { result = this.element.children(".ui-menu-item:first") } this.activate(b, result) } else { this.activate(b, this.element.children(".ui-menu-item").filter(!this.active || this.first() ? ":last" : ":first")) } }, hasScroll: function () { return this.element.height() < this.element[a.fn.prop ? "prop" : "attr"]("scrollHeight") }, select: function (a) { this._trigger("selected", a, { item: this.active }) } }) })(jQuery); (function (a, b) { var c, d, e, f, g = "ui-button ui-widget ui-state-default ui-corner-all", h = "ui-state-hover ui-state-active ", i = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only", j = function () { var b = a(this).find(":ui-button"); setTimeout(function () { b.button("refresh") }, 1) }, k = function (b) { var c = b.name, d = b.form, e = a([]); if (c) { if (d) { e = a(d).find("[name='" + c + "']") } else { e = a("[name='" + c + "']", b.ownerDocument).filter(function () { return !this.form }) } } return e }; a.widget("ui.button", { options: { disabled: null, text: true, label: null, icons: { primary: null, secondary: null} }, _create: function () { this.element.closest("form").unbind("reset.button").bind("reset.button", j); if (typeof this.options.disabled !== "boolean") { this.options.disabled = this.element.propAttr("disabled") } this._determineButtonType(); this.hasTitle = !!this.buttonElement.attr("title"); var b = this, h = this.options, i = this.type === "checkbox" || this.type === "radio", l = "ui-state-hover" + (!i ? " ui-state-active" : ""), m = "ui-state-focus"; if (h.label === null) { h.label = this.buttonElement.html() } if (this.element.is(":disabled")) { h.disabled = true } this.buttonElement.addClass(g).attr("role", "button").bind("mouseenter.button", function () { if (h.disabled) { return } a(this).addClass("ui-state-hover"); if (this === c) { a(this).addClass("ui-state-active") } }).bind("mouseleave.button", function () { if (h.disabled) { return } a(this).removeClass(l) }).bind("click.button", function (a) { if (h.disabled) { a.preventDefault(); a.stopImmediatePropagation() } }); this.element.bind("focus.button", function () { b.buttonElement.addClass(m) }).bind("blur.button", function () { b.buttonElement.removeClass(m) }); if (i) { this.element.bind("change.button", function () { if (f) { return } b.refresh() }); this.buttonElement.bind("mousedown.button", function (a) { if (h.disabled) { return } f = false; d = a.pageX; e = a.pageY }).bind("mouseup.button", function (a) { if (h.disabled) { return } if (d !== a.pageX || e !== a.pageY) { f = true } }) } if (this.type === "checkbox") { this.buttonElement.bind("click.button", function () { if (h.disabled || f) { return false } a(this).toggleClass("ui-state-active"); b.buttonElement.attr("aria-pressed", b.element[0].checked) }) } else if (this.type === "radio") { this.buttonElement.bind("click.button", function () { if (h.disabled || f) { return false } a(this).addClass("ui-state-active"); b.buttonElement.attr("aria-pressed", "true"); var c = b.element[0]; k(c).not(c).map(function () { return a(this).button("widget")[0] }).removeClass("ui-state-active").attr("aria-pressed", "false") }) } else { this.buttonElement.bind("mousedown.button", function () { if (h.disabled) { return false } a(this).addClass("ui-state-active"); c = this; a(document).one("mouseup", function () { c = null }) }).bind("mouseup.button", function () { if (h.disabled) { return false } a(this).removeClass("ui-state-active") }).bind("keydown.button", function (b) { if (h.disabled) { return false } if (b.keyCode == a.ui.keyCode.SPACE || b.keyCode == a.ui.keyCode.ENTER) { a(this).addClass("ui-state-active") } }).bind("keyup.button", function () { a(this).removeClass("ui-state-active") }); if (this.buttonElement.is("a")) { this.buttonElement.keyup(function (b) { if (b.keyCode === a.ui.keyCode.SPACE) { a(this).click() } }) } } this._setOption("disabled", h.disabled); this._resetButton() }, _determineButtonType: function () { if (this.element.is(":checkbox")) { this.type = "checkbox" } else if (this.element.is(":radio")) { this.type = "radio" } else if (this.element.is("input")) { this.type = "input" } else { this.type = "button" } if (this.type === "checkbox" || this.type === "radio") { var a = this.element.parents().filter(":last"), b = "label[for=" + this.element.attr("id") + "]"; this.buttonElement = a.find(b); if (!this.buttonElement.length) { a = a.length ? a.siblings() : this.element.siblings(); this.buttonElement = a.filter(b); if (!this.buttonElement.length) { this.buttonElement = a.find(b) } } this.element.addClass("ui-helper-hidden-accessible"); var c = this.element.is(":checked"); if (c) { this.buttonElement.addClass("ui-state-active") } this.buttonElement.attr("aria-pressed", c) } else { this.buttonElement = this.element } }, widget: function () { return this.buttonElement }, destroy: function () { this.element.removeClass("ui-helper-hidden-accessible"); this.buttonElement.removeClass(g + " " + h + " " + i).removeAttr("role").removeAttr("aria-pressed").html(this.buttonElement.find(".ui-button-text").html()); if (!this.hasTitle) { this.buttonElement.removeAttr("title") } a.Widget.prototype.destroy.call(this) }, _setOption: function (b, c) { a.Widget.prototype._setOption.apply(this, arguments); if (b === "disabled") { if (c) { this.element.propAttr("disabled", true) } else { this.element.propAttr("disabled", false) } return } this._resetButton() }, refresh: function () { var b = this.element.is(":disabled"); if (b !== this.options.disabled) { this._setOption("disabled", b) } if (this.type === "radio") { k(this.element[0]).each(function () { if (a(this).is(":checked")) { a(this).button("widget").addClass("ui-state-active").attr("aria-pressed", "true") } else { a(this).button("widget").removeClass("ui-state-active").attr("aria-pressed", "false") } }) } else if (this.type === "checkbox") { if (this.element.is(":checked")) { this.buttonElement.addClass("ui-state-active").attr("aria-pressed", "true") } else { this.buttonElement.removeClass("ui-state-active").attr("aria-pressed", "false") } } }, _resetButton: function () { if (this.type === "input") { if (this.options.label) { this.element.val(this.options.label) } return } var b = this.buttonElement.removeClass(i), c = a("<span></span>").addClass("ui-button-text").html(this.options.label).appendTo(b.empty()).text(), d = this.options.icons, e = d.primary && d.secondary, f = []; if (d.primary || d.secondary) { if (this.options.text) { f.push("ui-button-text-icon" + (e ? "s" : d.primary ? "-primary" : "-secondary")) } if (d.primary) { b.prepend("<span class='ui-button-icon-primary ui-icon " + d.primary + "'></span>") } if (d.secondary) { b.append("<span class='ui-button-icon-secondary ui-icon " + d.secondary + "'></span>") } if (!this.options.text) { f.push(e ? "ui-button-icons-only" : "ui-button-icon-only"); if (!this.hasTitle) { b.attr("title", c) } } } else { f.push("ui-button-text-only") } b.addClass(f.join(" ")) } }); a.widget("ui.buttonset", { options: { items: ":button, :submit, :reset, :checkbox, :radio, a, :data(button)" }, _create: function () { this.element.addClass("ui-buttonset") }, _init: function () { this.refresh() }, _setOption: function (b, c) { if (b === "disabled") { this.buttons.button("option", b, c) } a.Widget.prototype._setOption.apply(this, arguments) }, refresh: function () { var b = this.element.css("direction") === "ltr"; this.buttons = this.element.find(this.options.items).filter(":ui-button").button("refresh").end().not(":ui-button").button().end().map(function () { return a(this).button("widget")[0] }).removeClass("ui-corner-all ui-corner-left ui-corner-right").filter(":first").addClass(b ? "ui-corner-left" : "ui-corner-right").end().filter(":last").addClass(b ? "ui-corner-right" : "ui-corner-left").end().end() }, destroy: function () { this.element.removeClass("ui-buttonset"); this.buttons.map(function () { return a(this).button("widget")[0] }).removeClass("ui-corner-left ui-corner-right").end().button("destroy"); a.Widget.prototype.destroy.call(this) } }) })(jQuery); (function (a, b) { var c = "ui-dialog " + "ui-widget " + "ui-widget-content " + "ui-corner-all ", d = { buttons: true, height: true, maxHeight: true, maxWidth: true, minHeight: true, minWidth: true, width: true }, e = { maxHeight: true, maxWidth: true, minHeight: true, minWidth: true }, f = a.attrFn || { val: true, css: true, html: true, text: true, data: true, width: true, height: true, offset: true, click: true }; a.widget("ui.dialog", { options: { autoOpen: true, buttons: {}, closeOnEscape: true, closeText: "close", dialogClass: "", draggable: true, hide: null, height: "auto", maxHeight: false, maxWidth: false, minHeight: 150, minWidth: 150, modal: false, position: { my: "center", at: "center", collision: "fit", using: function (b) { var c = a(this).css(b).offset().top; if (c < 0) { a(this).css("top", b.top - c) } } }, resizable: true, show: null, stack: true, title: "", width: 300, zIndex: 1e3 }, _create: function () { this.originalTitle = this.element.attr("title"); if (typeof this.originalTitle !== "string") { this.originalTitle = "" } this.options.title = this.options.title || this.originalTitle; var b = this, d = b.options, e = d.title || "&#160;", f = a.ui.dialog.getTitleId(b.element), g = (b.uiDialog = a("<div></div>")).appendTo(document.body).hide().addClass(c + d.dialogClass).css({ zIndex: d.zIndex }).attr("tabIndex", -1).css("outline", 0).keydown(function (c) { if (d.closeOnEscape && c.keyCode && c.keyCode === a.ui.keyCode.ESCAPE) { b.close(c); c.preventDefault() } }).attr({ role: "dialog", "aria-labelledby": f }).mousedown(function (a) { b.moveToTop(false, a) }), h = b.element.show().removeAttr("title").addClass("ui-dialog-content " + "ui-widget-content").appendTo(g), i = (b.uiDialogTitlebar = a("<div></div>")).addClass("ui-dialog-titlebar " + "ui-widget-header " + "ui-corner-all " + "ui-helper-clearfix").prependTo(g), j = a('<a href="#"></a>').addClass("ui-dialog-titlebar-close " + "ui-corner-all").attr("role", "button").hover(function () { j.addClass("ui-state-hover") }, function () { j.removeClass("ui-state-hover") }).focus(function () { j.addClass("ui-state-focus") }).blur(function () { j.removeClass("ui-state-focus") }).click(function (a) { b.close(a); return false }).appendTo(i), k = (b.uiDialogTitlebarCloseText = a("<span></span>")).addClass("ui-icon " + "ui-icon-closethick").text(d.closeText).appendTo(j), l = a("<span></span>").addClass("ui-dialog-title").attr("id", f).html(e).prependTo(i); if (a.isFunction(d.beforeclose) && !a.isFunction(d.beforeClose)) { d.beforeClose = d.beforeclose } i.find("*").add(i).disableSelection(); if (d.draggable && a.fn.draggable) { b._makeDraggable() } if (d.resizable && a.fn.resizable) { b._makeResizable() } b._createButtons(d.buttons); b._isOpen = false; if (a.fn.bgiframe) { g.bgiframe() } }, _init: function () { if (this.options.autoOpen) { this.open() } }, destroy: function () { var a = this; if (a.overlay) { a.overlay.destroy() } a.uiDialog.hide(); a.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body"); a.uiDialog.remove(); if (a.originalTitle) { a.element.attr("title", a.originalTitle) } return a }, widget: function () { return this.uiDialog }, close: function (b) { var c = this, d, e; if (false === c._trigger("beforeClose", b)) { return } if (c.overlay) { c.overlay.destroy() } c.uiDialog.unbind("keypress.ui-dialog"); c._isOpen = false; if (c.options.hide) { c.uiDialog.hide(c.options.hide, function () { c._trigger("close", b) }) } else { c.uiDialog.hide(); c._trigger("close", b) } a.ui.dialog.overlay.resize(); if (c.options.modal) { d = 0; a(".ui-dialog").each(function () { if (this !== c.uiDialog[0]) { e = a(this).css("z-index"); if (!isNaN(e)) { d = Math.max(d, e) } } }); a.ui.dialog.maxZ = d } return c }, isOpen: function () { return this._isOpen }, moveToTop: function (b, c) { var d = this, e = d.options, f; if (e.modal && !b || !e.stack && !e.modal) { return d._trigger("focus", c) } if (e.zIndex > a.ui.dialog.maxZ) { a.ui.dialog.maxZ = e.zIndex } if (d.overlay) { a.ui.dialog.maxZ += 1; d.overlay.$el.css("z-index", a.ui.dialog.overlay.maxZ = a.ui.dialog.maxZ) } f = { scrollTop: d.element.scrollTop(), scrollLeft: d.element.scrollLeft() }; a.ui.dialog.maxZ += 1; d.uiDialog.css("z-index", a.ui.dialog.maxZ); d.element.attr(f); d._trigger("focus", c); return d }, open: function () { if (this._isOpen) { return } var b = this, c = b.options, d = b.uiDialog; b.overlay = c.modal ? new a.ui.dialog.overlay(b) : null; b._size(); b._position(c.position); d.show(c.show); b.moveToTop(true); if (c.modal) { d.bind("keypress.ui-dialog", function (b) { if (b.keyCode !== a.ui.keyCode.TAB) { return } var c = a(":tabbable", this), d = c.filter(":first"), e = c.filter(":last"); if (b.target === e[0] && !b.shiftKey) { d.focus(1); return false } else if (b.target === d[0] && b.shiftKey) { e.focus(1); return false } }) } a(b.element.find(":tabbable").get().concat(d.find(".ui-dialog-buttonpane :tabbable").get().concat(d.get()))).eq(0).focus(); b._isOpen = true; b._trigger("open"); return b }, _createButtons: function (b) { var c = this, d = false, e = a("<div></div>").addClass("ui-dialog-buttonpane " + "ui-widget-content " + "ui-helper-clearfix"), g = a("<div></div>").addClass("ui-dialog-buttonset").appendTo(e); c.uiDialog.find(".ui-dialog-buttonpane").remove(); if (typeof b === "object" && b !== null) { a.each(b, function () { return !(d = true) }) } if (d) { a.each(b, function (b, d) { d = a.isFunction(d) ? { click: d, text: b} : d; var e = a('<button type="button"></button>').click(function () { d.click.apply(c.element[0], arguments) }).appendTo(g); a.each(d, function (a, b) { if (a === "click") { return } if (a in f) { e[a](b) } else { e.attr(a, b) } }); if (a.fn.button) { e.button() } }); e.appendTo(c.uiDialog) } }, _makeDraggable: function () { function f(a) { return { position: a.position, offset: a.offset} } var b = this, c = b.options, d = a(document), e; b.uiDialog.draggable({ cancel: ".ui-dialog-content, .ui-dialog-titlebar-close", handle: ".ui-dialog-titlebar", containment: "document", start: function (d, g) { e = c.height === "auto" ? "auto" : a(this).height(); a(this).height(a(this).height()).addClass("ui-dialog-dragging"); b._trigger("dragStart", d, f(g)) }, drag: function (a, c) { b._trigger("drag", a, f(c)) }, stop: function (g, h) { c.position = [h.position.left - d.scrollLeft(), h.position.top - d.scrollTop()]; a(this).removeClass("ui-dialog-dragging").height(e); b._trigger("dragStop", g, f(h)); a.ui.dialog.overlay.resize() } }) }, _makeResizable: function (c) { function h(a) { return { originalPosition: a.originalPosition, originalSize: a.originalSize, position: a.position, size: a.size} } c = c === b ? this.options.resizable : c; var d = this, e = d.options, f = d.uiDialog.css("position"), g = typeof c === "string" ? c : "n,e,s,w,se,sw,ne,nw"; d.uiDialog.resizable({ cancel: ".ui-dialog-content", containment: "document", alsoResize: d.element, maxWidth: e.maxWidth, maxHeight: e.maxHeight, minWidth: e.minWidth, minHeight: d._minHeight(), handles: g, start: function (b, c) { a(this).addClass("ui-dialog-resizing"); d._trigger("resizeStart", b, h(c)) }, resize: function (a, b) { d._trigger("resize", a, h(b)) }, stop: function (b, c) { a(this).removeClass("ui-dialog-resizing"); e.height = a(this).height(); e.width = a(this).width(); d._trigger("resizeStop", b, h(c)); a.ui.dialog.overlay.resize() } }).css("position", f).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se") }, _minHeight: function () { var a = this.options; if (a.height === "auto") { return a.minHeight } else { return Math.min(a.minHeight, a.height) } }, _position: function (b) { var c = [], d = [0, 0], e; if (b) { if (typeof b === "string" || typeof b === "object" && "0" in b) { c = b.split ? b.split(" ") : [b[0], b[1]]; if (c.length === 1) { c[1] = c[0] } a.each(["left", "top"], function (a, b) { if (+c[a] === c[a]) { d[a] = c[a]; c[a] = b } }); b = { my: c.join(" "), at: c.join(" "), offset: d.join(" ")} } b = a.extend({}, a.ui.dialog.prototype.options.position, b) } else { b = a.ui.dialog.prototype.options.position } e = this.uiDialog.is(":visible"); if (!e) { this.uiDialog.show() } this.uiDialog.css({ top: 0, left: 0 }).position(a.extend({ of: window }, b)); if (!e) { this.uiDialog.hide() } }, _setOptions: function (b) { var c = this, f = {}, g = false; a.each(b, function (a, b) { c._setOption(a, b); if (a in d) { g = true } if (a in e) { f[a] = b } }); if (g) { this._size() } if (this.uiDialog.is(":data(resizable)")) { this.uiDialog.resizable("option", f) } }, _setOption: function (b, d) { var e = this, f = e.uiDialog; switch (b) { case "beforeclose": b = "beforeClose"; break; case "buttons": e._createButtons(d); break; case "closeText": e.uiDialogTitlebarCloseText.text("" + d); break; case "dialogClass": f.removeClass(e.options.dialogClass).addClass(c + d); break; case "disabled": if (d) { f.addClass("ui-dialog-disabled") } else { f.removeClass("ui-dialog-disabled") } break; case "draggable": var g = f.is(":data(draggable)"); if (g && !d) { f.draggable("destroy") } if (!g && d) { e._makeDraggable() } break; case "position": e._position(d); break; case "resizable": var h = f.is(":data(resizable)"); if (h && !d) { f.resizable("destroy") } if (h && typeof d === "string") { f.resizable("option", "handles", d) } if (!h && d !== false) { e._makeResizable(d) } break; case "title": a(".ui-dialog-title", e.uiDialogTitlebar).html("" + (d || "&#160;")); break } a.Widget.prototype._setOption.apply(e, arguments) }, _size: function () { var b = this.options, c, d, e = this.uiDialog.is(":visible"); this.element.show().css({ width: "auto", minHeight: 0, height: 0 }); if (b.minWidth > b.width) { b.width = b.minWidth } c = this.uiDialog.css({ height: "auto", width: b.width }).height(); d = Math.max(0, b.minHeight - c); if (b.height === "auto") { if (a.support.minHeight) { this.element.css({ minHeight: d, height: "auto" }) } else { this.uiDialog.show(); var f = this.element.css("height", "auto").height(); if (!e) { this.uiDialog.hide() } this.element.height(Math.max(f, d)) } } else { this.element.height(Math.max(b.height - c, 0)) } if (this.uiDialog.is(":data(resizable)")) { this.uiDialog.resizable("option", "minHeight", this._minHeight()) } } }); a.extend(a.ui.dialog, { version: "1.8.15", uuid: 0, maxZ: 0, getTitleId: function (a) { var b = a.attr("id"); if (!b) { this.uuid += 1; b = this.uuid } return "ui-dialog-title-" + b }, overlay: function (b) { this.$el = a.ui.dialog.overlay.create(b) } }); a.extend(a.ui.dialog.overlay, { instances: [], oldInstances: [], maxZ: 0, events: a.map("focus,mousedown,mouseup,keydown,keypress,click".split(","), function (a) { return a + ".dialog-overlay" }).join(" "), create: function (b) { if (this.instances.length === 0) { setTimeout(function () { if (a.ui.dialog.overlay.instances.length) { a(document).bind(a.ui.dialog.overlay.events, function (b) { if (a(b.target).zIndex() < a.ui.dialog.overlay.maxZ) { return false } }) } }, 1); a(document).bind("keydown.dialog-overlay", function (c) { if (b.options.closeOnEscape && c.keyCode && c.keyCode === a.ui.keyCode.ESCAPE) { b.close(c); c.preventDefault() } }); a(window).bind("resize.dialog-overlay", a.ui.dialog.overlay.resize) } var c = (this.oldInstances.pop() || a("<div></div>").addClass("ui-widget-overlay")).appendTo(document.body).css({ width: this.width(), height: this.height() }); if (a.fn.bgiframe) { c.bgiframe() } this.instances.push(c); return c }, destroy: function (b) { var c = a.inArray(b, this.instances); if (c != -1) { this.oldInstances.push(this.instances.splice(c, 1)[0]) } if (this.instances.length === 0) { a([document, window]).unbind(".dialog-overlay") } b.remove(); var d = 0; a.each(this.instances, function () { d = Math.max(d, this.css("z-index")) }); this.maxZ = d }, height: function () { var b, c; if (a.browser.msie && a.browser.version < 7) { b = Math.max(document.documentElement.scrollHeight, document.body.scrollHeight); c = Math.max(document.documentElement.offsetHeight, document.body.offsetHeight); if (b < c) { return a(window).height() + "px" } else { return b + "px" } } else { return a(document).height() + "px" } }, width: function () { var b, c; if (a.browser.msie) { b = Math.max(document.documentElement.scrollWidth, document.body.scrollWidth); c = Math.max(document.documentElement.offsetWidth, document.body.offsetWidth); if (b < c) { return a(window).width() + "px" } else { return b + "px" } } else { return a(document).width() + "px" } }, resize: function () { var b = a([]); a.each(a.ui.dialog.overlay.instances, function () { b = b.add(this) }); b.css({ width: 0, height: 0 }).css({ width: a.ui.dialog.overlay.width(), height: a.ui.dialog.overlay.height() }) } }); a.extend(a.ui.dialog.overlay.prototype, { destroy: function () { a.ui.dialog.overlay.destroy(this.$el) } }) })(jQuery); (function (a, b) { var c = 5; a.widget("ui.slider", a.ui.mouse, { widgetEventPrefix: "slide", options: { animate: false, distance: 0, max: 100, min: 0, orientation: "horizontal", range: false, step: 1, value: 0, values: null }, _create: function () { var b = this, d = this.options, e = this.element.find(".ui-slider-handle").addClass("ui-state-default ui-corner-all"), f = "<a class='ui-slider-handle ui-state-default ui-corner-all' href='#'></a>", g = d.values && d.values.length || 1, h = []; this._keySliding = false; this._mouseSliding = false; this._animateOff = true; this._handleIndex = null; this._detectOrientation(); this._mouseInit(); this.element.addClass("ui-slider" + " ui-slider-" + this.orientation + " ui-widget" + " ui-widget-content" + " ui-corner-all" + (d.disabled ? " ui-slider-disabled ui-disabled" : "")); this.range = a([]); if (d.range) { if (d.range === true) { if (!d.values) { d.values = [this._valueMin(), this._valueMin()] } if (d.values.length && d.values.length !== 2) { d.values = [d.values[0], d.values[0]] } } this.range = a("<div></div>").appendTo(this.element).addClass("ui-slider-range" + " ui-widget-header" + (d.range === "min" || d.range === "max" ? " ui-slider-range-" + d.range : "")) } for (var i = e.length; i < g; i += 1) { h.push(f) } this.handles = e.add(a(h.join("")).appendTo(b.element)); this.handle = this.handles.eq(0); this.handles.add(this.range).filter("a").click(function (a) { a.preventDefault() }).hover(function () { if (!d.disabled) { a(this).addClass("ui-state-hover") } }, function () { a(this).removeClass("ui-state-hover") }).focus(function () { if (!d.disabled) { a(".ui-slider .ui-state-focus").removeClass("ui-state-focus"); a(this).addClass("ui-state-focus") } else { a(this).blur() } }).blur(function () { a(this).removeClass("ui-state-focus") }); this.handles.each(function (b) { a(this).data("index.ui-slider-handle", b) }); this.handles.keydown(function (d) { var e = true, f = a(this).data("index.ui-slider-handle"), g, h, i, j; if (b.options.disabled) { return } switch (d.keyCode) { case a.ui.keyCode.HOME: case a.ui.keyCode.END: case a.ui.keyCode.PAGE_UP: case a.ui.keyCode.PAGE_DOWN: case a.ui.keyCode.UP: case a.ui.keyCode.RIGHT: case a.ui.keyCode.DOWN: case a.ui.keyCode.LEFT: e = false; if (!b._keySliding) { b._keySliding = true; a(this).addClass("ui-state-active"); g = b._start(d, f); if (g === false) { return } } break } j = b.options.step; if (b.options.values && b.options.values.length) { h = i = b.values(f) } else { h = i = b.value() } switch (d.keyCode) { case a.ui.keyCode.HOME: i = b._valueMin(); break; case a.ui.keyCode.END: i = b._valueMax(); break; case a.ui.keyCode.PAGE_UP: i = b._trimAlignValue(h + (b._valueMax() - b._valueMin()) / c); break; case a.ui.keyCode.PAGE_DOWN: i = b._trimAlignValue(h - (b._valueMax() - b._valueMin()) / c); break; case a.ui.keyCode.UP: case a.ui.keyCode.RIGHT: if (h === b._valueMax()) { return } i = b._trimAlignValue(h + j); break; case a.ui.keyCode.DOWN: case a.ui.keyCode.LEFT: if (h === b._valueMin()) { return } i = b._trimAlignValue(h - j); break } b._slide(d, f, i); return e }).keyup(function (c) { var d = a(this).data("index.ui-slider-handle"); if (b._keySliding) { b._keySliding = false; b._stop(c, d); b._change(c, d); a(this).removeClass("ui-state-active") } }); this._refreshValue(); this._animateOff = false }, destroy: function () { this.handles.remove(); this.range.remove(); this.element.removeClass("ui-slider" + " ui-slider-horizontal" + " ui-slider-vertical" + " ui-slider-disabled" + " ui-widget" + " ui-widget-content" + " ui-corner-all").removeData("slider").unbind(".slider"); this._mouseDestroy(); return this }, _mouseCapture: function (b) { var c = this.options, d, e, f, g, h, i, j, k, l; if (c.disabled) { return false } this.elementSize = { width: this.element.outerWidth(), height: this.element.outerHeight() }; this.elementOffset = this.element.offset(); d = { x: b.pageX, y: b.pageY }; e = this._normValueFromMouse(d); f = this._valueMax() - this._valueMin() + 1; h = this; this.handles.each(function (b) { var c = Math.abs(e - h.values(b)); if (f > c) { f = c; g = a(this); i = b } }); if (c.range === true && this.values(1) === c.min) { i += 1; g = a(this.handles[i]) } j = this._start(b, i); if (j === false) { return false } this._mouseSliding = true; h._handleIndex = i; g.addClass("ui-state-active").focus(); k = g.offset(); l = !a(b.target).parents().andSelf().is(".ui-slider-handle"); this._clickOffset = l ? { left: 0, top: 0} : { left: b.pageX - k.left - g.width() / 2, top: b.pageY - k.top - g.height() / 2 - (parseInt(g.css("borderTopWidth"), 10) || 0) - (parseInt(g.css("borderBottomWidth"), 10) || 0) + (parseInt(g.css("marginTop"), 10) || 0) }; if (!this.handles.hasClass("ui-state-hover")) { this._slide(b, i, e) } this._animateOff = true; return true }, _mouseStart: function (a) { return true }, _mouseDrag: function (a) { var b = { x: a.pageX, y: a.pageY }, c = this._normValueFromMouse(b); this._slide(a, this._handleIndex, c); return false }, _mouseStop: function (a) { this.handles.removeClass("ui-state-active"); this._mouseSliding = false; this._stop(a, this._handleIndex); this._change(a, this._handleIndex); this._handleIndex = null; this._clickOffset = null; this._animateOff = false; return false }, _detectOrientation: function () { this.orientation = this.options.orientation === "vertical" ? "vertical" : "horizontal" }, _normValueFromMouse: function (a) { var b, c, d, e, f; if (this.orientation === "horizontal") { b = this.elementSize.width; c = a.x - this.elementOffset.left - (this._clickOffset ? this._clickOffset.left : 0) } else { b = this.elementSize.height; c = a.y - this.elementOffset.top - (this._clickOffset ? this._clickOffset.top : 0) } d = c / b; if (d > 1) { d = 1 } if (d < 0) { d = 0 } if (this.orientation === "vertical") { d = 1 - d } e = this._valueMax() - this._valueMin(); f = this._valueMin() + d * e; return this._trimAlignValue(f) }, _start: function (a, b) { var c = { handle: this.handles[b], value: this.value() }; if (this.options.values && this.options.values.length) { c.value = this.values(b); c.values = this.values() } return this._trigger("start", a, c) }, _slide: function (a, b, c) { var d, e, f; if (this.options.values && this.options.values.length) { d = this.values(b ? 0 : 1); if (this.options.values.length === 2 && this.options.range === true && (b === 0 && c > d || b === 1 && c < d)) { c = d } if (c !== this.values(b)) { e = this.values(); e[b] = c; f = this._trigger("slide", a, { handle: this.handles[b], value: c, values: e }); d = this.values(b ? 0 : 1); if (f !== false) { this.values(b, c, true) } } } else { if (c !== this.value()) { f = this._trigger("slide", a, { handle: this.handles[b], value: c }); if (f !== false) { this.value(c) } } } }, _stop: function (a, b) { var c = { handle: this.handles[b], value: this.value() }; if (this.options.values && this.options.values.length) { c.value = this.values(b); c.values = this.values() } this._trigger("stop", a, c) }, _change: function (a, b) { if (!this._keySliding && !this._mouseSliding) { var c = { handle: this.handles[b], value: this.value() }; if (this.options.values && this.options.values.length) { c.value = this.values(b); c.values = this.values() } this._trigger("change", a, c) } }, value: function (a) { if (arguments.length) { this.options.value = this._trimAlignValue(a); this._refreshValue(); this._change(null, 0); return } return this._value() }, values: function (b, c) { var d, e, f; if (arguments.length > 1) { this.options.values[b] = this._trimAlignValue(c); this._refreshValue(); this._change(null, b); return } if (arguments.length) { if (a.isArray(arguments[0])) { d = this.options.values; e = arguments[0]; for (f = 0; f < d.length; f += 1) { d[f] = this._trimAlignValue(e[f]); this._change(null, f) } this._refreshValue() } else { if (this.options.values && this.options.values.length) { return this._values(b) } else { return this.value() } } } else { return this._values() } }, _setOption: function (b, c) { var d, e = 0; if (a.isArray(this.options.values)) { e = this.options.values.length } a.Widget.prototype._setOption.apply(this, arguments); switch (b) { case "disabled": if (c) { this.handles.filter(".ui-state-focus").blur(); this.handles.removeClass("ui-state-hover"); this.handles.propAttr("disabled", true); this.element.addClass("ui-disabled") } else { this.handles.propAttr("disabled", false); this.element.removeClass("ui-disabled") } break; case "orientation": this._detectOrientation(); this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-" + this.orientation); this._refreshValue(); break; case "value": this._animateOff = true; this._refreshValue(); this._change(null, 0); this._animateOff = false; break; case "values": this._animateOff = true; this._refreshValue(); for (d = 0; d < e; d += 1) { this._change(null, d) } this._animateOff = false; break } }, _value: function () { var a = this.options.value; a = this._trimAlignValue(a); return a }, _values: function (a) { var b, c, d; if (arguments.length) { b = this.options.values[a]; b = this._trimAlignValue(b); return b } else { c = this.options.values.slice(); for (d = 0; d < c.length; d += 1) { c[d] = this._trimAlignValue(c[d]) } return c } }, _trimAlignValue: function (a) { if (a <= this._valueMin()) { return this._valueMin() } if (a >= this._valueMax()) { return this._valueMax() } var b = this.options.step > 0 ? this.options.step : 1, c = (a - this._valueMin()) % b, d = a - c; if (Math.abs(c) * 2 >= b) { d += c > 0 ? b : -b } return parseFloat(d.toFixed(5)) }, _valueMin: function () { return this.options.min }, _valueMax: function () { return this.options.max }, _refreshValue: function () { var b = this.options.range, c = this.options, d = this, e = !this._animateOff ? c.animate : false, f, g = {}, h, i, j, k; if (this.options.values && this.options.values.length) { this.handles.each(function (b, i) { f = (d.values(b) - d._valueMin()) / (d._valueMax() - d._valueMin()) * 100; g[d.orientation === "horizontal" ? "left" : "bottom"] = f + "%"; a(this).stop(1, 1)[e ? "animate" : "css"](g, c.animate); if (d.options.range === true) { if (d.orientation === "horizontal") { if (b === 0) { d.range.stop(1, 1)[e ? "animate" : "css"]({ left: f + "%" }, c.animate) } if (b === 1) { d.range[e ? "animate" : "css"]({ width: f - h + "%" }, { queue: false, duration: c.animate }) } } else { if (b === 0) { d.range.stop(1, 1)[e ? "animate" : "css"]({ bottom: f + "%" }, c.animate) } if (b === 1) { d.range[e ? "animate" : "css"]({ height: f - h + "%" }, { queue: false, duration: c.animate }) } } } h = f }) } else { i = this.value(); j = this._valueMin(); k = this._valueMax(); f = k !== j ? (i - j) / (k - j) * 100 : 0; g[d.orientation === "horizontal" ? "left" : "bottom"] = f + "%"; this.handle.stop(1, 1)[e ? "animate" : "css"](g, c.animate); if (b === "min" && this.orientation === "horizontal") { this.range.stop(1, 1)[e ? "animate" : "css"]({ width: f + "%" }, c.animate) } if (b === "max" && this.orientation === "horizontal") { this.range[e ? "animate" : "css"]({ width: 100 - f + "%" }, { queue: false, duration: c.animate }) } if (b === "min" && this.orientation === "vertical") { this.range.stop(1, 1)[e ? "animate" : "css"]({ height: f + "%" }, c.animate) } if (b === "max" && this.orientation === "vertical") { this.range[e ? "animate" : "css"]({ height: 100 - f + "%" }, { queue: false, duration: c.animate }) } } } }); a.extend(a.ui.slider, { version: "1.8.15" }) })(jQuery); (function (a, b) { function f() { return ++d } function e() { return ++c } var c = 0, d = 0; a.widget("ui.tabs", { options: { add: null, ajaxOptions: null, cache: false, cookie: null, collapsible: false, disable: null, disabled: [], enable: null, event: "click", fx: null, idPrefix: "ui-tabs-", load: null, panelTemplate: "<div></div>", remove: null, select: null, show: null, spinner: "<em>Loading&#8230;</em>", tabTemplate: "<li><a href='#{href}'><span>#{label}</span></a></li>" }, _create: function () { this._tabify(true) }, _setOption: function (a, b) { if (a == "selected") { if (this.options.collapsible && b == this.options.selected) { return } this.select(b) } else { this.options[a] = b; this._tabify() } }, _tabId: function (a) { return a.title && a.title.replace(/\s/g, "_").replace(/[^\w\u00c0-\uFFFF-]/g, "") || this.options.idPrefix + e() }, _sanitizeSelector: function (a) { return a.replace(/:/g, "\\:") }, _cookie: function () { var b = this.cookie || (this.cookie = this.options.cookie.name || "ui-tabs-" + f()); return a.cookie.apply(null, [b].concat(a.makeArray(arguments))) }, _ui: function (a, b) { return { tab: a, panel: b, index: this.anchors.index(a)} }, _cleanup: function () { this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function () { var b = a(this); b.html(b.data("label.tabs")).removeData("label.tabs") }) }, _tabify: function (c) { function m(b, c) { b.css("display", ""); if (!a.support.opacity && c.opacity) { b[0].style.removeAttribute("filter") } } var d = this, e = this.options, f = /^#.+/; this.list = this.element.find("ol,ul").eq(0); this.lis = a(" > li:has(a[href])", this.list); this.anchors = this.lis.map(function () { return a("a", this)[0] }); this.panels = a([]); this.anchors.each(function (b, c) { var g = a(c).attr("href"); var h = g.split("#")[0], i; if (h && (h === location.toString().split("#")[0] || (i = a("base")[0]) && h === i.href)) { g = c.hash; c.href = g } if (f.test(g)) { d.panels = d.panels.add(d.element.find(d._sanitizeSelector(g))) } else if (g && g !== "#") { a.data(c, "href.tabs", g); a.data(c, "load.tabs", g.replace(/#.*$/, "")); var j = d._tabId(c); c.href = "#" + j; var k = d.element.find("#" + j); if (!k.length) { k = a(e.panelTemplate).attr("id", j).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(d.panels[b - 1] || d.list); k.data("destroy.tabs", true) } d.panels = d.panels.add(k) } else { e.disabled.push(b) } }); if (c) { this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all"); this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"); this.lis.addClass("ui-state-default ui-corner-top"); this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom"); if (e.selected === b) { if (location.hash) { this.anchors.each(function (a, b) { if (b.hash == location.hash) { e.selected = a; return false } }) } if (typeof e.selected !== "number" && e.cookie) { e.selected = parseInt(d._cookie(), 10) } if (typeof e.selected !== "number" && this.lis.filter(".ui-tabs-selected").length) { e.selected = this.lis.index(this.lis.filter(".ui-tabs-selected")) } e.selected = e.selected || (this.lis.length ? 0 : -1) } else if (e.selected === null) { e.selected = -1 } e.selected = e.selected >= 0 && this.anchors[e.selected] || e.selected < 0 ? e.selected : 0; e.disabled = a.unique(e.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"), function (a, b) { return d.lis.index(a) }))).sort(); if (a.inArray(e.selected, e.disabled) != -1) { e.disabled.splice(a.inArray(e.selected, e.disabled), 1) } this.panels.addClass("ui-tabs-hide"); this.lis.removeClass("ui-tabs-selected ui-state-active"); if (e.selected >= 0 && this.anchors.length) { d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash)).removeClass("ui-tabs-hide"); this.lis.eq(e.selected).addClass("ui-tabs-selected ui-state-active"); d.element.queue("tabs", function () { d._trigger("show", null, d._ui(d.anchors[e.selected], d.element.find(d._sanitizeSelector(d.anchors[e.selected].hash))[0])) }); this.load(e.selected) } a(window).bind("unload", function () { d.lis.add(d.anchors).unbind(".tabs"); d.lis = d.anchors = d.panels = null }) } else { e.selected = this.lis.index(this.lis.filter(".ui-tabs-selected")) } this.element[e.collapsible ? "addClass" : "removeClass"]("ui-tabs-collapsible"); if (e.cookie) { this._cookie(e.selected, e.cookie) } for (var g = 0, h; h = this.lis[g]; g++) { a(h)[a.inArray(g, e.disabled) != -1 && !a(h).hasClass("ui-tabs-selected") ? "addClass" : "removeClass"]("ui-state-disabled") } if (e.cache === false) { this.anchors.removeData("cache.tabs") } this.lis.add(this.anchors).unbind(".tabs"); if (e.event !== "mouseover") { var i = function (a, b) { if (b.is(":not(.ui-state-disabled)")) { b.addClass("ui-state-" + a) } }; var j = function (a, b) { b.removeClass("ui-state-" + a) }; this.lis.bind("mouseover.tabs", function () { i("hover", a(this)) }); this.lis.bind("mouseout.tabs", function () { j("hover", a(this)) }); this.anchors.bind("focus.tabs", function () { i("focus", a(this).closest("li")) }); this.anchors.bind("blur.tabs", function () { j("focus", a(this).closest("li")) }) } var k, l; if (e.fx) { if (a.isArray(e.fx)) { k = e.fx[0]; l = e.fx[1] } else { k = l = e.fx } } var n = l ? function (b, c) { a(b).closest("li").addClass("ui-tabs-selected ui-state-active"); c.hide().removeClass("ui-tabs-hide").animate(l, l.duration || "normal", function () { m(c, l); d._trigger("show", null, d._ui(b, c[0])) }) } : function (b, c) { a(b).closest("li").addClass("ui-tabs-selected ui-state-active"); c.removeClass("ui-tabs-hide"); d._trigger("show", null, d._ui(b, c[0])) }; var o = k ? function (a, b) { b.animate(k, k.duration || "normal", function () { d.lis.removeClass("ui-tabs-selected ui-state-active"); b.addClass("ui-tabs-hide"); m(b, k); d.element.dequeue("tabs") }) } : function (a, b, c) { d.lis.removeClass("ui-tabs-selected ui-state-active"); b.addClass("ui-tabs-hide"); d.element.dequeue("tabs") }; this.anchors.bind(e.event + ".tabs", function () { var b = this, c = a(b).closest("li"), f = d.panels.filter(":not(.ui-tabs-hide)"), g = d.element.find(d._sanitizeSelector(b.hash)); if (c.hasClass("ui-tabs-selected") && !e.collapsible || c.hasClass("ui-state-disabled") || c.hasClass("ui-state-processing") || d.panels.filter(":animated").length || d._trigger("select", null, d._ui(this, g[0])) === false) { this.blur(); return false } e.selected = d.anchors.index(this); d.abort(); if (e.collapsible) { if (c.hasClass("ui-tabs-selected")) { e.selected = -1; if (e.cookie) { d._cookie(e.selected, e.cookie) } d.element.queue("tabs", function () { o(b, f) }).dequeue("tabs"); this.blur(); return false } else if (!f.length) { if (e.cookie) { d._cookie(e.selected, e.cookie) } d.element.queue("tabs", function () { n(b, g) }); d.load(d.anchors.index(this)); this.blur(); return false } } if (e.cookie) { d._cookie(e.selected, e.cookie) } if (g.length) { if (f.length) { d.element.queue("tabs", function () { o(b, f) }) } d.element.queue("tabs", function () { n(b, g) }); d.load(d.anchors.index(this)) } else { throw "jQuery UI Tabs: Mismatching fragment identifier." } if (a.browser.msie) { this.blur() } }); this.anchors.bind("click.tabs", function () { return false }) }, _getIndex: function (a) { if (typeof a == "string") { a = this.anchors.index(this.anchors.filter("[href$=" + a + "]")) } return a }, destroy: function () { var b = this.options; this.abort(); this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs"); this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all"); this.anchors.each(function () { var b = a.data(this, "href.tabs"); if (b) { this.href = b } var c = a(this).unbind(".tabs"); a.each(["href", "load", "cache"], function (a, b) { c.removeData(b + ".tabs") }) }); this.lis.unbind(".tabs").add(this.panels).each(function () { if (a.data(this, "destroy.tabs")) { a(this).remove() } else { a(this).removeClass(["ui-state-default", "ui-corner-top", "ui-tabs-selected", "ui-state-active", "ui-state-hover", "ui-state-focus", "ui-state-disabled", "ui-tabs-panel", "ui-widget-content", "ui-corner-bottom", "ui-tabs-hide"].join(" ")) } }); if (b.cookie) { this._cookie(null, b.cookie) } return this }, add: function (c, d, e) { if (e === b) { e = this.anchors.length } var f = this, g = this.options, h = a(g.tabTemplate.replace(/#\{href\}/g, c).replace(/#\{label\}/g, d)), i = !c.indexOf("#") ? c.replace("#", "") : this._tabId(a("a", h)[0]); h.addClass("ui-state-default ui-corner-top").data("destroy.tabs", true); var j = f.element.find("#" + i); if (!j.length) { j = a(g.panelTemplate).attr("id", i).data("destroy.tabs", true) } j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide"); if (e >= this.lis.length) { h.appendTo(this.list); j.appendTo(this.list[0].parentNode) } else { h.insertBefore(this.lis[e]); j.insertBefore(this.panels[e]) } g.disabled = a.map(g.disabled, function (a, b) { return a >= e ? ++a : a }); this._tabify(); if (this.anchors.length == 1) { g.selected = 0; h.addClass("ui-tabs-selected ui-state-active"); j.removeClass("ui-tabs-hide"); this.element.queue("tabs", function () { f._trigger("show", null, f._ui(f.anchors[0], f.panels[0])) }); this.load(0) } this._trigger("add", null, this._ui(this.anchors[e], this.panels[e])); return this }, remove: function (b) { b = this._getIndex(b); var c = this.options, d = this.lis.eq(b).remove(), e = this.panels.eq(b).remove(); if (d.hasClass("ui-tabs-selected") && this.anchors.length > 1) { this.select(b + (b + 1 < this.anchors.length ? 1 : -1)) } c.disabled = a.map(a.grep(c.disabled, function (a, c) { return a != b }), function (a, c) { return a >= b ? --a : a }); this._tabify(); this._trigger("remove", null, this._ui(d.find("a")[0], e[0])); return this }, enable: function (b) { b = this._getIndex(b); var c = this.options; if (a.inArray(b, c.disabled) == -1) { return } this.lis.eq(b).removeClass("ui-state-disabled"); c.disabled = a.grep(c.disabled, function (a, c) { return a != b }); this._trigger("enable", null, this._ui(this.anchors[b], this.panels[b])); return this }, disable: function (a) { a = this._getIndex(a); var b = this, c = this.options; if (a != c.selected) { this.lis.eq(a).addClass("ui-state-disabled"); c.disabled.push(a); c.disabled.sort(); this._trigger("disable", null, this._ui(this.anchors[a], this.panels[a])) } return this }, select: function (a) { a = this._getIndex(a); if (a == -1) { if (this.options.collapsible && this.options.selected != -1) { a = this.options.selected } else { return this } } this.anchors.eq(a).trigger(this.options.event + ".tabs"); return this }, load: function (b) { b = this._getIndex(b); var c = this, d = this.options, e = this.anchors.eq(b)[0], f = a.data(e, "load.tabs"); this.abort(); if (!f || this.element.queue("tabs").length !== 0 && a.data(e, "cache.tabs")) { this.element.dequeue("tabs"); return } this.lis.eq(b).addClass("ui-state-processing"); if (d.spinner) { var g = a("span", e); g.data("label.tabs", g.html()).html(d.spinner) } this.xhr = a.ajax(a.extend({}, d.ajaxOptions, { url: f, success: function (f, g) { c.element.find(c._sanitizeSelector(e.hash)).html(f); c._cleanup(); if (d.cache) { a.data(e, "cache.tabs", true) } c._trigger("load", null, c._ui(c.anchors[b], c.panels[b])); try { d.ajaxOptions.success(f, g) } catch (h) { } }, error: function (a, f, g) { c._cleanup(); c._trigger("load", null, c._ui(c.anchors[b], c.panels[b])); try { d.ajaxOptions.error(a, f, b, e) } catch (g) { } } })); c.element.dequeue("tabs"); return this }, abort: function () { this.element.queue([]); this.panels.stop(false, true); this.element.queue("tabs", this.element.queue("tabs").splice(-2, 2)); if (this.xhr) { this.xhr.abort(); delete this.xhr } this._cleanup(); return this }, url: function (a, b) { this.anchors.eq(a).removeData("cache.tabs").data("load.tabs", b); return this }, length: function () { return this.anchors.length } }); a.extend(a.ui.tabs, { version: "1.8.15" }); a.extend(a.ui.tabs.prototype, { rotation: null, rotate: function (a, b) { var c = this, d = this.options; var e = c._rotate || (c._rotate = function (b) { clearTimeout(c.rotation); c.rotation = setTimeout(function () { var a = d.selected; c.select(++a < c.anchors.length ? a : 0) }, a); if (b) { b.stopPropagation() } }); var f = c._unrotate || (c._unrotate = !b ? function (a) { if (a.clientX) { c.rotate(null) } } : function (a) { t = d.selected; e() }); if (a) { this.element.bind("tabsshow", e); this.anchors.bind(d.event + ".tabs", f); e() } else { clearTimeout(c.rotation); this.element.unbind("tabsshow", e); this.anchors.unbind(d.event + ".tabs", f); delete this._rotate; delete this._unrotate } return this } }) })(jQuery); (function ($, undefined) { function isArray(a) { return a && ($.browser.safari && typeof a == "object" && a.length || a.constructor && a.constructor.toString().match(/\Array\(\)/)) } function extendRemove(a, b) { $.extend(a, b); for (var c in b) if (b[c] == null || b[c] == undefined) a[c] = b[c]; return a } function bindHover(a) { var b = "button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a"; return a.bind("mouseout", function (a) { var c = $(a.target).closest(b); if (!c.length) { return } c.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover") }).bind("mouseover", function (c) { var d = $(c.target).closest(b); if ($.datepicker._isDisabledDatepicker(instActive.inline ? a.parent()[0] : instActive.input[0]) || !d.length) { return } d.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"); d.addClass("ui-state-hover"); if (d.hasClass("ui-datepicker-prev")) d.addClass("ui-datepicker-prev-hover"); if (d.hasClass("ui-datepicker-next")) d.addClass("ui-datepicker-next-hover") }) } function Datepicker() { this.debug = false; this._curInst = null; this._keyEvent = false; this._disabledInputs = []; this._datepickerShowing = false; this._inDialog = false; this._mainDivId = "ui-datepicker-div"; this._inlineClass = "ui-datepicker-inline"; this._appendClass = "ui-datepicker-append"; this._triggerClass = "ui-datepicker-trigger"; this._dialogClass = "ui-datepicker-dialog"; this._disableClass = "ui-datepicker-disabled"; this._unselectableClass = "ui-datepicker-unselectable"; this._currentClass = "ui-datepicker-current-day"; this._dayOverClass = "ui-datepicker-days-cell-over"; this.regional = []; this.regional[""] = { closeText: "Done", prevText: "Prev", nextText: "Next", currentText: "Today", monthNames: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"], monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], dayNamesMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"], weekHeader: "Wk", dateFormat: "mm/dd/yy", firstDay: 0, isRTL: false, showMonthAfterYear: false, yearSuffix: "" }; this._defaults = { showOn: "focus", showAnim: "fadeIn", showOptions: {}, defaultDate: null, appendText: "", buttonText: "...", buttonImage: "", buttonImageOnly: false, hideIfNoPrevNext: false, navigationAsDateFormat: false, gotoCurrent: false, changeMonth: false, changeYear: false, yearRange: "c-10:c+10", showOtherMonths: false, selectOtherMonths: false, showWeek: false, calculateWeek: this.iso8601Week, shortYearCutoff: "+10", minDate: null, maxDate: null, duration: "fast", beforeShowDay: null, beforeShow: null, onSelect: null, onChangeMonthYear: null, onClose: null, numberOfMonths: 1, showCurrentAtPos: 0, stepMonths: 1, stepBigMonths: 12, altField: "", altFormat: "", constrainInput: true, showButtonPanel: false, autoSize: false, disabled: false }; $.extend(this._defaults, this.regional[""]); this.dpDiv = bindHover($('<div id="' + this._mainDivId + '" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>')) } $.extend($.ui, { datepicker: { version: "1.8.15"} }); var PROP_NAME = "datepicker"; var dpuuid = (new Date).getTime(); var instActive; $.extend(Datepicker.prototype, { markerClassName: "hasDatepicker", maxRows: 4, log: function () { if (this.debug) console.log.apply("", arguments) }, _widgetDatepicker: function () { return this.dpDiv }, setDefaults: function (a) { extendRemove(this._defaults, a || {}); return this }, _attachDatepicker: function (target, settings) { var inlineSettings = null; for (var attrName in this._defaults) { var attrValue = target.getAttribute("date:" + attrName); if (attrValue) { inlineSettings = inlineSettings || {}; try { inlineSettings[attrName] = eval(attrValue) } catch (err) { inlineSettings[attrName] = attrValue } } } var nodeName = target.nodeName.toLowerCase(); var inline = nodeName == "div" || nodeName == "span"; if (!target.id) { this.uuid += 1; target.id = "dp" + this.uuid } var inst = this._newInst($(target), inline); inst.settings = $.extend({}, settings || {}, inlineSettings || {}); if (nodeName == "input") { this._connectDatepicker(target, inst) } else if (inline) { this._inlineDatepicker(target, inst) } }, _newInst: function (a, b) { var c = a[0].id.replace(/([^A-Za-z0-9_-])/g, "\\\\$1"); return { id: c, input: a, selectedDay: 0, selectedMonth: 0, selectedYear: 0, drawMonth: 0, drawYear: 0, inline: b, dpDiv: !b ? this.dpDiv : bindHover($('<div class="' + this._inlineClass + ' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))} }, _connectDatepicker: function (a, b) { var c = $(a); b.append = $([]); b.trigger = $([]); if (c.hasClass(this.markerClassName)) return; this._attachments(c, b); c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker", function (a, c, d) { b.settings[c] = d }).bind("getData.datepicker", function (a, c) { return this._get(b, c) }); this._autoSize(b); $.data(a, PROP_NAME, b); if (b.settings.disabled) { this._disableDatepicker(a) } }, _attachments: function (a, b) { var c = this._get(b, "appendText"); var d = this._get(b, "isRTL"); if (b.append) b.append.remove(); if (c) { b.append = $('<span class="' + this._appendClass + '">' + c + "</span>"); a[d ? "before" : "after"](b.append) } a.unbind("focus", this._showDatepicker); if (b.trigger) b.trigger.remove(); var e = this._get(b, "showOn"); if (e == "focus" || e == "both") a.focus(this._showDatepicker); if (e == "button" || e == "both") { var f = this._get(b, "buttonText"); var g = this._get(b, "buttonImage"); b.trigger = $(this._get(b, "buttonImageOnly") ? $("<img/>").addClass(this._triggerClass).attr({ src: g, alt: f, title: f }) : $('<button type="button"></button>').addClass(this._triggerClass).html(g == "" ? f : $("<img/>").attr({ src: g, alt: f, title: f }))); a[d ? "before" : "after"](b.trigger); b.trigger.click(function () { if ($.datepicker._datepickerShowing && $.datepicker._lastInput == a[0]) $.datepicker._hideDatepicker(); else $.datepicker._showDatepicker(a[0]); return false }) } }, _autoSize: function (a) { if (this._get(a, "autoSize") && !a.inline) { var b = new Date(2009, 12 - 1, 20); var c = this._get(a, "dateFormat"); if (c.match(/[DM]/)) { var d = function (a) { var b = 0; var c = 0; for (var d = 0; d < a.length; d++) { if (a[d].length > b) { b = a[d].length; c = d } } return c }; b.setMonth(d(this._get(a, c.match(/MM/) ? "monthNames" : "monthNamesShort"))); b.setDate(d(this._get(a, c.match(/DD/) ? "dayNames" : "dayNamesShort")) + 20 - b.getDay()) } a.input.attr("size", this._formatDate(a, b).length) } }, _inlineDatepicker: function (a, b) { var c = $(a); if (c.hasClass(this.markerClassName)) return; c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker", function (a, c, d) { b.settings[c] = d }).bind("getData.datepicker", function (a, c) { return this._get(b, c) }); $.data(a, PROP_NAME, b); this._setDate(b, this._getDefaultDate(b), true); this._updateDatepicker(b); this._updateAlternate(b); if (b.settings.disabled) { this._disableDatepicker(a) } b.dpDiv.css("display", "block") }, _dialogDatepicker: function (a, b, c, d, e) { var f = this._dialogInst; if (!f) { this.uuid += 1; var g = "dp" + this.uuid; this._dialogInput = $('<input type="text" id="' + g + '" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>'); this._dialogInput.keydown(this._doKeyDown); $("body").append(this._dialogInput); f = this._dialogInst = this._newInst(this._dialogInput, false); f.settings = {}; $.data(this._dialogInput[0], PROP_NAME, f) } extendRemove(f.settings, d || {}); b = b && b.constructor == Date ? this._formatDate(f, b) : b; this._dialogInput.val(b); this._pos = e ? e.length ? e : [e.pageX, e.pageY] : null; if (!this._pos) { var h = document.documentElement.clientWidth; var i = document.documentElement.clientHeight; var j = document.documentElement.scrollLeft || document.body.scrollLeft; var k = document.documentElement.scrollTop || document.body.scrollTop; this._pos = [h / 2 - 100 + j, i / 2 - 150 + k] } this._dialogInput.css("left", this._pos[0] + 20 + "px").css("top", this._pos[1] + "px"); f.settings.onSelect = c; this._inDialog = true; this.dpDiv.addClass(this._dialogClass); this._showDatepicker(this._dialogInput[0]); if ($.blockUI) $.blockUI(this.dpDiv); $.data(this._dialogInput[0], PROP_NAME, f); return this }, _destroyDatepicker: function (a) { var b = $(a); var c = $.data(a, PROP_NAME); if (!b.hasClass(this.markerClassName)) { return } var d = a.nodeName.toLowerCase(); $.removeData(a, PROP_NAME); if (d == "input") { c.append.remove(); c.trigger.remove(); b.removeClass(this.markerClassName).unbind("focus", this._showDatepicker).unbind("keydown", this._doKeyDown).unbind("keypress", this._doKeyPress).unbind("keyup", this._doKeyUp) } else if (d == "div" || d == "span") b.removeClass(this.markerClassName).empty() }, _enableDatepicker: function (a) { var b = $(a); var c = $.data(a, PROP_NAME); if (!b.hasClass(this.markerClassName)) { return } var d = a.nodeName.toLowerCase(); if (d == "input") { a.disabled = false; c.trigger.filter("button").each(function () { this.disabled = false }).end().filter("img").css({ opacity: "1.0", cursor: "" }) } else if (d == "div" || d == "span") { var e = b.children("." + this._inlineClass); e.children().removeClass("ui-state-disabled"); e.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled") } this._disabledInputs = $.map(this._disabledInputs, function (b) { return b == a ? null : b }) }, _disableDatepicker: function (a) { var b = $(a); var c = $.data(a, PROP_NAME); if (!b.hasClass(this.markerClassName)) { return } var d = a.nodeName.toLowerCase(); if (d == "input") { a.disabled = true; c.trigger.filter("button").each(function () { this.disabled = true }).end().filter("img").css({ opacity: "0.5", cursor: "default" }) } else if (d == "div" || d == "span") { var e = b.children("." + this._inlineClass); e.children().addClass("ui-state-disabled"); e.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled", "disabled") } this._disabledInputs = $.map(this._disabledInputs, function (b) { return b == a ? null : b }); this._disabledInputs[this._disabledInputs.length] = a }, _isDisabledDatepicker: function (a) { if (!a) { return false } for (var b = 0; b < this._disabledInputs.length; b++) { if (this._disabledInputs[b] == a) return true } return false }, _getInst: function (a) { try { return $.data(a, PROP_NAME) } catch (b) { throw "Missing instance data for this datepicker" } }, _optionDatepicker: function (a, b, c) { var d = this._getInst(a); if (arguments.length == 2 && typeof b == "string") { return b == "defaults" ? $.extend({}, $.datepicker._defaults) : d ? b == "all" ? $.extend({}, d.settings) : this._get(d, b) : null } var e = b || {}; if (typeof b == "string") { e = {}; e[b] = c } if (d) { if (this._curInst == d) { this._hideDatepicker() } var f = this._getDateDatepicker(a, true); var g = this._getMinMaxDate(d, "min"); var h = this._getMinMaxDate(d, "max"); extendRemove(d.settings, e); if (g !== null && e["dateFormat"] !== undefined && e["minDate"] === undefined) d.settings.minDate = this._formatDate(d, g); if (h !== null && e["dateFormat"] !== undefined && e["maxDate"] === undefined) d.settings.maxDate = this._formatDate(d, h); this._attachments($(a), d); this._autoSize(d); this._setDate(d, f); this._updateAlternate(d); this._updateDatepicker(d) } }, _changeDatepicker: function (a, b, c) { this._optionDatepicker(a, b, c) }, _refreshDatepicker: function (a) { var b = this._getInst(a); if (b) { this._updateDatepicker(b) } }, _setDateDatepicker: function (a, b) { var c = this._getInst(a); if (c) { this._setDate(c, b); this._updateDatepicker(c); this._updateAlternate(c) } }, _getDateDatepicker: function (a, b) { var c = this._getInst(a); if (c && !c.inline) this._setDateFromField(c, b); return c ? this._getDate(c) : null }, _doKeyDown: function (a) { var b = $.datepicker._getInst(a.target); var c = true; var d = b.dpDiv.is(".ui-datepicker-rtl"); b._keyEvent = true; if ($.datepicker._datepickerShowing) switch (a.keyCode) { case 9: $.datepicker._hideDatepicker(); c = false; break; case 13: var e = $("td." + $.datepicker._dayOverClass + ":not(." + $.datepicker._currentClass + ")", b.dpDiv); if (e[0]) $.datepicker._selectDay(a.target, b.selectedMonth, b.selectedYear, e[0]); var f = $.datepicker._get(b, "onSelect"); if (f) { var g = $.datepicker._formatDate(b); f.apply(b.input ? b.input[0] : null, [g, b]) } else $.datepicker._hideDatepicker(); return false; break; case 27: $.datepicker._hideDatepicker(); break; case 33: $.datepicker._adjustDate(a.target, a.ctrlKey ? -$.datepicker._get(b, "stepBigMonths") : -$.datepicker._get(b, "stepMonths"), "M"); break; case 34: $.datepicker._adjustDate(a.target, a.ctrlKey ? +$.datepicker._get(b, "stepBigMonths") : +$.datepicker._get(b, "stepMonths"), "M"); break; case 35: if (a.ctrlKey || a.metaKey) $.datepicker._clearDate(a.target); c = a.ctrlKey || a.metaKey; break; case 36: if (a.ctrlKey || a.metaKey) $.datepicker._gotoToday(a.target); c = a.ctrlKey || a.metaKey; break; case 37: if (a.ctrlKey || a.metaKey) $.datepicker._adjustDate(a.target, d ? +1 : -1, "D"); c = a.ctrlKey || a.metaKey; if (a.originalEvent.altKey) $.datepicker._adjustDate(a.target, a.ctrlKey ? -$.datepicker._get(b, "stepBigMonths") : -$.datepicker._get(b, "stepMonths"), "M"); break; case 38: if (a.ctrlKey || a.metaKey) $.datepicker._adjustDate(a.target, -7, "D"); c = a.ctrlKey || a.metaKey; break; case 39: if (a.ctrlKey || a.metaKey) $.datepicker._adjustDate(a.target, d ? -1 : +1, "D"); c = a.ctrlKey || a.metaKey; if (a.originalEvent.altKey) $.datepicker._adjustDate(a.target, a.ctrlKey ? +$.datepicker._get(b, "stepBigMonths") : +$.datepicker._get(b, "stepMonths"), "M"); break; case 40: if (a.ctrlKey || a.metaKey) $.datepicker._adjustDate(a.target, +7, "D"); c = a.ctrlKey || a.metaKey; break; default: c = false } else if (a.keyCode == 36 && a.ctrlKey) $.datepicker._showDatepicker(this); else { c = false } if (c) { a.preventDefault(); a.stopPropagation() } }, _doKeyPress: function (a) { var b = $.datepicker._getInst(a.target); if ($.datepicker._get(b, "constrainInput")) { var c = $.datepicker._possibleChars($.datepicker._get(b, "dateFormat")); var d = String.fromCharCode(a.charCode == undefined ? a.keyCode : a.charCode); return a.ctrlKey || a.metaKey || d < " " || !c || c.indexOf(d) > -1 } }, _doKeyUp: function (a) { var b = $.datepicker._getInst(a.target); if (b.input.val() != b.lastVal) { try { var c = $.datepicker.parseDate($.datepicker._get(b, "dateFormat"), b.input ? b.input.val() : null, $.datepicker._getFormatConfig(b)); if (c) { $.datepicker._setDateFromField(b); $.datepicker._updateAlternate(b); $.datepicker._updateDatepicker(b) } } catch (a) { $.datepicker.log(a) } } return true }, _showDatepicker: function (a) { a = a.target || a; if (a.nodeName.toLowerCase() != "input") a = $("input", a.parentNode)[0]; if ($.datepicker._isDisabledDatepicker(a) || $.datepicker._lastInput == a) return; var b = $.datepicker._getInst(a); if ($.datepicker._curInst && $.datepicker._curInst != b) { if ($.datepicker._datepickerShowing) { $.datepicker._triggerOnClose($.datepicker._curInst) } $.datepicker._curInst.dpDiv.stop(true, true) } var c = $.datepicker._get(b, "beforeShow"); extendRemove(b.settings, c ? c.apply(a, [a, b]) : {}); b.lastVal = null; $.datepicker._lastInput = a; $.datepicker._setDateFromField(b); if ($.datepicker._inDialog) a.value = ""; if (!$.datepicker._pos) { $.datepicker._pos = $.datepicker._findPos(a); $.datepicker._pos[1] += a.offsetHeight } var d = false; $(a).parents().each(function () { d |= $(this).css("position") == "fixed"; return !d }); if (d && $.browser.opera) { $.datepicker._pos[0] -= document.documentElement.scrollLeft; $.datepicker._pos[1] -= document.documentElement.scrollTop } var e = { left: $.datepicker._pos[0], top: $.datepicker._pos[1] }; $.datepicker._pos = null; b.dpDiv.empty(); b.dpDiv.css({ position: "absolute", display: "block", top: "-1000px" }); $.datepicker._updateDatepicker(b); e = $.datepicker._checkOffset(b, e, d); b.dpDiv.css({ position: $.datepicker._inDialog && $.blockUI ? "static" : d ? "fixed" : "absolute", display: "none", left: e.left + "px", top: e.top + "px" }); if (!b.inline) { var f = $.datepicker._get(b, "showAnim"); var g = $.datepicker._get(b, "duration"); var h = function () { var a = b.dpDiv.find("iframe.ui-datepicker-cover"); if (!!a.length) { var c = $.datepicker._getBorders(b.dpDiv); a.css({ left: -c[0], top: -c[1], width: b.dpDiv.outerWidth(), height: b.dpDiv.outerHeight() }) } }; b.dpDiv.zIndex($(a).zIndex() + 1); $.datepicker._datepickerShowing = true; if ($.effects && $.effects[f]) b.dpDiv.show(f, $.datepicker._get(b, "showOptions"), g, h); else b.dpDiv[f || "show"](f ? g : null, h); if (!f || !g) h(); if (b.input.is(":visible") && !b.input.is(":disabled")) b.input.focus(); $.datepicker._curInst = b } }, _updateDatepicker: function (a) { var b = this; b.maxRows = 4; var c = $.datepicker._getBorders(a.dpDiv); instActive = a; a.dpDiv.empty().append(this._generateHTML(a)); var d = a.dpDiv.find("iframe.ui-datepicker-cover"); if (!!d.length) { d.css({ left: -c[0], top: -c[1], width: a.dpDiv.outerWidth(), height: a.dpDiv.outerHeight() }) } a.dpDiv.find("." + this._dayOverClass + " a").mouseover(); var e = this._getNumberOfMonths(a); var f = e[1]; var g = 17; a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""); if (f > 1) a.dpDiv.addClass("ui-datepicker-multi-" + f).css("width", g * f + "em"); a.dpDiv[(e[0] != 1 || e[1] != 1 ? "add" : "remove") + "Class"]("ui-datepicker-multi"); a.dpDiv[(this._get(a, "isRTL") ? "add" : "remove") + "Class"]("ui-datepicker-rtl"); if (a == $.datepicker._curInst && $.datepicker._datepickerShowing && a.input && a.input.is(":visible") && !a.input.is(":disabled") && a.input[0] != document.activeElement) a.input.focus(); if (a.yearshtml) { var h = a.yearshtml; setTimeout(function () { if (h === a.yearshtml && a.yearshtml) { a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml) } h = a.yearshtml = null }, 0) } }, _getBorders: function (a) { var b = function (a) { return { thin: 1, medium: 2, thick: 3}[a] || a }; return [parseFloat(b(a.css("border-left-width"))), parseFloat(b(a.css("border-top-width")))] }, _checkOffset: function (a, b, c) { var d = a.dpDiv.outerWidth(); var e = a.dpDiv.outerHeight(); var f = a.input ? a.input.outerWidth() : 0; var g = a.input ? a.input.outerHeight() : 0; var h = document.documentElement.clientWidth + $(document).scrollLeft(); var i = document.documentElement.clientHeight + $(document).scrollTop(); b.left -= this._get(a, "isRTL") ? d - f : 0; b.left -= c && b.left == a.input.offset().left ? $(document).scrollLeft() : 0; b.top -= c && b.top == a.input.offset().top + g ? $(document).scrollTop() : 0; b.left -= Math.min(b.left, b.left + d > h && h > d ? Math.abs(b.left + d - h) : 0); b.top -= Math.min(b.top, b.top + e > i && i > e ? Math.abs(e + g) : 0); return b }, _findPos: function (a) { var b = this._getInst(a); var c = this._get(b, "isRTL"); while (a && (a.type == "hidden" || a.nodeType != 1 || $.expr.filters.hidden(a))) { a = a[c ? "previousSibling" : "nextSibling"] } var d = $(a).offset(); return [d.left, d.top] }, _triggerOnClose: function (a) { var b = this._get(a, "onClose"); if (b) b.apply(a.input ? a.input[0] : null, [a.input ? a.input.val() : "", a]) }, _hideDatepicker: function (a) { var b = this._curInst; if (!b || a && b != $.data(a, PROP_NAME)) return; if (this._datepickerShowing) { var c = this._get(b, "showAnim"); var d = this._get(b, "duration"); var e = function () { $.datepicker._tidyDialog(b); this._curInst = null }; if ($.effects && $.effects[c]) b.dpDiv.hide(c, $.datepicker._get(b, "showOptions"), d, e); else b.dpDiv[c == "slideDown" ? "slideUp" : c == "fadeIn" ? "fadeOut" : "hide"](c ? d : null, e); if (!c) e(); $.datepicker._triggerOnClose(b); this._datepickerShowing = false; this._lastInput = null; if (this._inDialog) { this._dialogInput.css({ position: "absolute", left: "0", top: "-100px" }); if ($.blockUI) { $.unblockUI(); $("body").append(this.dpDiv) } } this._inDialog = false } }, _tidyDialog: function (a) { a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar") }, _checkExternalClick: function (a) { if (!$.datepicker._curInst) return; var b = $(a.target); if (b[0].id != $.datepicker._mainDivId && b.parents("#" + $.datepicker._mainDivId).length == 0 && !b.hasClass($.datepicker.markerClassName) && !b.hasClass($.datepicker._triggerClass) && $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI)) $.datepicker._hideDatepicker() }, _adjustDate: function (a, b, c) { var d = $(a); var e = this._getInst(d[0]); if (this._isDisabledDatepicker(d[0])) { return } this._adjustInstDate(e, b + (c == "M" ? this._get(e, "showCurrentAtPos") : 0), c); this._updateDatepicker(e) }, _gotoToday: function (a) { var b = $(a); var c = this._getInst(b[0]); if (this._get(c, "gotoCurrent") && c.currentDay) { c.selectedDay = c.currentDay; c.drawMonth = c.selectedMonth = c.currentMonth; c.drawYear = c.selectedYear = c.currentYear } else { var d = new Date; c.selectedDay = d.getDate(); c.drawMonth = c.selectedMonth = d.getMonth(); c.drawYear = c.selectedYear = d.getFullYear() } this._notifyChange(c); this._adjustDate(b) }, _selectMonthYear: function (a, b, c) { var d = $(a); var e = this._getInst(d[0]); e["selected" + (c == "M" ? "Month" : "Year")] = e["draw" + (c == "M" ? "Month" : "Year")] = parseInt(b.options[b.selectedIndex].value, 10); this._notifyChange(e); this._adjustDate(d) }, _selectDay: function (a, b, c, d) { var e = $(a); if ($(d).hasClass(this._unselectableClass) || this._isDisabledDatepicker(e[0])) { return } var f = this._getInst(e[0]); f.selectedDay = f.currentDay = $("a", d).html(); f.selectedMonth = f.currentMonth = b; f.selectedYear = f.currentYear = c; this._selectDate(a, this._formatDate(f, f.currentDay, f.currentMonth, f.currentYear)) }, _clearDate: function (a) { var b = $(a); var c = this._getInst(b[0]); this._selectDate(b, "") }, _selectDate: function (a, b) { var c = $(a); var d = this._getInst(c[0]); b = b != null ? b : this._formatDate(d); if (d.input) d.input.val(b); this._updateAlternate(d); var e = this._get(d, "onSelect"); if (e) e.apply(d.input ? d.input[0] : null, [b, d]); else if (d.input) d.input.trigger("change"); if (d.inline) this._updateDatepicker(d); else { this._hideDatepicker(); this._lastInput = d.input[0]; d.input.focus(); this._lastInput = null } }, _updateAlternate: function (a) { var b = this._get(a, "altField"); if (b) { var c = this._get(a, "altFormat") || this._get(a, "dateFormat"); var d = this._getDate(a); var e = this.formatDate(c, d, this._getFormatConfig(a)); $(b).each(function () { $(this).val(e) }) } }, noWeekends: function (a) { var b = a.getDay(); return [b > 0 && b < 6, ""] }, iso8601Week: function (a) { var b = new Date(a.getTime()); b.setDate(b.getDate() + 4 - (b.getDay() || 7)); var c = b.getTime(); b.setMonth(0); b.setDate(1); return Math.floor(Math.round((c - b) / 864e5) / 7) + 1 }, parseDate: function (a, b, c) { if (a == null || b == null) throw "Invalid arguments"; b = typeof b == "object" ? b.toString() : b + ""; if (b == "") return null; var d = (c ? c.shortYearCutoff : null) || this._defaults.shortYearCutoff; d = typeof d != "string" ? d : (new Date).getFullYear() % 100 + parseInt(d, 10); var e = (c ? c.dayNamesShort : null) || this._defaults.dayNamesShort; var f = (c ? c.dayNames : null) || this._defaults.dayNames; var g = (c ? c.monthNamesShort : null) || this._defaults.monthNamesShort; var h = (c ? c.monthNames : null) || this._defaults.monthNames; var i = -1; var j = -1; var k = -1; var l = -1; var m = false; var n = function (b) { var c = s + 1 < a.length && a.charAt(s + 1) == b; if (c) s++; return c }; var o = function (a) { var c = n(a); var d = a == "@" ? 14 : a == "!" ? 20 : a == "y" && c ? 4 : a == "o" ? 3 : 2; var e = new RegExp("^\\d{1," + d + "}"); var f = b.substring(r).match(e); if (!f) throw "Missing number at position " + r; r += f[0].length; return parseInt(f[0], 10) }; var p = function (a, c, d) { var e = $.map(n(a) ? d : c, function (a, b) { return [[b, a]] }).sort(function (a, b) { return -(a[1].length - b[1].length) }); var f = -1; $.each(e, function (a, c) { var d = c[1]; if (b.substr(r, d.length).toLowerCase() == d.toLowerCase()) { f = c[0]; r += d.length; return false } }); if (f != -1) return f + 1; else throw "Unknown name at position " + r }; var q = function () { if (b.charAt(r) != a.charAt(s)) throw "Unexpected literal at position " + r; r++ }; var r = 0; for (var s = 0; s < a.length; s++) { if (m) if (a.charAt(s) == "'" && !n("'")) m = false; else q(); else switch (a.charAt(s)) { case "d": k = o("d"); break; case "D": p("D", e, f); break; case "o": l = o("o"); break; case "m": j = o("m"); break; case "M": j = p("M", g, h); break; case "y": i = o("y"); break; case "@": var t = new Date(o("@")); i = t.getFullYear(); j = t.getMonth() + 1; k = t.getDate(); break; case "!": var t = new Date((o("!") - this._ticksTo1970) / 1e4); i = t.getFullYear(); j = t.getMonth() + 1; k = t.getDate(); break; case "'": if (n("'")) q(); else m = true; break; default: q() } } if (r < b.length) { throw "Extra/unparsed characters found in date: " + b.substring(r) } if (i == -1) i = (new Date).getFullYear(); else if (i < 100) i += (new Date).getFullYear() - (new Date).getFullYear() % 100 + (i <= d ? 0 : -100); if (l > -1) { j = 1; k = l; do { var u = this._getDaysInMonth(i, j - 1); if (k <= u) break; j++; k -= u } while (true) } var t = this._daylightSavingAdjust(new Date(i, j - 1, k)); if (t.getFullYear() != i || t.getMonth() + 1 != j || t.getDate() != k) throw "Invalid date"; return t }, ATOM: "yy-mm-dd", COOKIE: "D, dd M yy", ISO_8601: "yy-mm-dd", RFC_822: "D, d M y", RFC_850: "DD, dd-M-y", RFC_1036: "D, d M y", RFC_1123: "D, d M yy", RFC_2822: "D, d M yy", RSS: "D, d M y", TICKS: "!", TIMESTAMP: "@", W3C: "yy-mm-dd", _ticksTo1970: ((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) + Math.floor(1970 / 400)) * 24 * 60 * 60 * 1e7, formatDate: function (a, b, c) { if (!b) return ""; var d = (c ? c.dayNamesShort : null) || this._defaults.dayNamesShort; var e = (c ? c.dayNames : null) || this._defaults.dayNames; var f = (c ? c.monthNamesShort : null) || this._defaults.monthNamesShort; var g = (c ? c.monthNames : null) || this._defaults.monthNames; var h = function (b) { var c = m + 1 < a.length && a.charAt(m + 1) == b; if (c) m++; return c }; var i = function (a, b, c) { var d = "" + b; if (h(a)) while (d.length < c) d = "0" + d; return d }; var j = function (a, b, c, d) { return h(a) ? d[b] : c[b] }; var k = ""; var l = false; if (b) for (var m = 0; m < a.length; m++) { if (l) if (a.charAt(m) == "'" && !h("'")) l = false; else k += a.charAt(m); else switch (a.charAt(m)) { case "d": k += i("d", b.getDate(), 2); break; case "D": k += j("D", b.getDay(), d, e); break; case "o": k += i("o", Math.round(((new Date(b.getFullYear(), b.getMonth(), b.getDate())).getTime() - (new Date(b.getFullYear(), 0, 0)).getTime()) / 864e5), 3); break; case "m": k += i("m", b.getMonth() + 1, 2); break; case "M": k += j("M", b.getMonth(), f, g); break; case "y": k += h("y") ? b.getFullYear() : (b.getYear() % 100 < 10 ? "0" : "") + b.getYear() % 100; break; case "@": k += b.getTime(); break; case "!": k += b.getTime() * 1e4 + this._ticksTo1970; break; case "'": if (h("'")) k += "'"; else l = true; break; default: k += a.charAt(m) } } return k }, _possibleChars: function (a) { var b = ""; var c = false; var d = function (b) { var c = e + 1 < a.length && a.charAt(e + 1) == b; if (c) e++; return c }; for (var e = 0; e < a.length; e++) if (c) if (a.charAt(e) == "'" && !d("'")) c = false; else b += a.charAt(e); else switch (a.charAt(e)) { case "d": case "m": case "y": case "@": b += "0123456789"; break; case "D": case "M": return null; case "'": if (d("'")) b += "'"; else c = true; break; default: b += a.charAt(e) } return b }, _get: function (a, b) { return a.settings[b] !== undefined ? a.settings[b] : this._defaults[b] }, _setDateFromField: function (a, b) { if (a.input.val() == a.lastVal) { return } var c = this._get(a, "dateFormat"); var d = a.lastVal = a.input ? a.input.val() : null; var e, f; e = f = this._getDefaultDate(a); var g = this._getFormatConfig(a); try { e = this.parseDate(c, d, g) || f } catch (h) { this.log(h); d = b ? "" : d } a.selectedDay = e.getDate(); a.drawMonth = a.selectedMonth = e.getMonth(); a.drawYear = a.selectedYear = e.getFullYear(); a.currentDay = d ? e.getDate() : 0; a.currentMonth = d ? e.getMonth() : 0; a.currentYear = d ? e.getFullYear() : 0; this._adjustInstDate(a) }, _getDefaultDate: function (a) { return this._restrictMinMax(a, this._determineDate(a, this._get(a, "defaultDate"), new Date)) }, _determineDate: function (a, b, c) { var d = function (a) { var b = new Date; b.setDate(b.getDate() + a); return b }; var e = function (b) { try { return $.datepicker.parseDate($.datepicker._get(a, "dateFormat"), b, $.datepicker._getFormatConfig(a)) } catch (c) { } var d = (b.toLowerCase().match(/^c/) ? $.datepicker._getDate(a) : null) || new Date; var e = d.getFullYear(); var f = d.getMonth(); var g = d.getDate(); var h = /([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g; var i = h.exec(b); while (i) { switch (i[2] || "d") { case "d": case "D": g += parseInt(i[1], 10); break; case "w": case "W": g += parseInt(i[1], 10) * 7; break; case "m": case "M": f += parseInt(i[1], 10); g = Math.min(g, $.datepicker._getDaysInMonth(e, f)); break; case "y": case "Y": e += parseInt(i[1], 10); g = Math.min(g, $.datepicker._getDaysInMonth(e, f)); break } i = h.exec(b) } return new Date(e, f, g) }; var f = b == null || b === "" ? c : typeof b == "string" ? e(b) : typeof b == "number" ? isNaN(b) ? c : d(b) : new Date(b.getTime()); f = f && f.toString() == "Invalid Date" ? c : f; if (f) { f.setHours(0); f.setMinutes(0); f.setSeconds(0); f.setMilliseconds(0) } return this._daylightSavingAdjust(f) }, _daylightSavingAdjust: function (a) { if (!a) return null; a.setHours(a.getHours() > 12 ? a.getHours() + 2 : 0); return a }, _setDate: function (a, b, c) { var d = !b; var e = a.selectedMonth; var f = a.selectedYear; var g = this._restrictMinMax(a, this._determineDate(a, b, new Date)); a.selectedDay = a.currentDay = g.getDate(); a.drawMonth = a.selectedMonth = a.currentMonth = g.getMonth(); a.drawYear = a.selectedYear = a.currentYear = g.getFullYear(); if ((e != a.selectedMonth || f != a.selectedYear) && !c) this._notifyChange(a); this._adjustInstDate(a); if (a.input) { a.input.val(d ? "" : this._formatDate(a)) } var h = this._get(a, "onSelect"); if (h) { var i = this._formatDate(a); h.apply(a.input ? a.input[0] : null, [i, a]) } }, _getDate: function (a) { var b = !a.currentYear || a.input && a.input.val() == "" ? null : this._daylightSavingAdjust(new Date(a.currentYear, a.currentMonth, a.currentDay)); return b }, _generateHTML: function (a) { var b = new Date; b = this._daylightSavingAdjust(new Date(b.getFullYear(), b.getMonth(), b.getDate())); var c = this._get(a, "isRTL"); var d = this._get(a, "showButtonPanel"); var e = this._get(a, "hideIfNoPrevNext"); var f = this._get(a, "navigationAsDateFormat"); var g = this._getNumberOfMonths(a); var h = this._get(a, "showCurrentAtPos"); var i = this._get(a, "stepMonths"); var j = g[0] != 1 || g[1] != 1; var k = this._daylightSavingAdjust(!a.currentDay ? new Date(9999, 9, 9) : new Date(a.currentYear, a.currentMonth, a.currentDay)); var l = this._getMinMaxDate(a, "min"); var m = this._getMinMaxDate(a, "max"); var n = a.drawMonth - h; var o = a.drawYear; if (n < 0) { n += 12; o-- } if (m) { var p = this._daylightSavingAdjust(new Date(m.getFullYear(), m.getMonth() - g[0] * g[1] + 1, m.getDate())); p = l && p < l ? l : p; while (this._daylightSavingAdjust(new Date(o, n, 1)) > p) { n--; if (n < 0) { n = 11; o-- } } } a.drawMonth = n; a.drawYear = o; var q = this._get(a, "prevText"); q = !f ? q : this.formatDate(q, this._daylightSavingAdjust(new Date(o, n - i, 1)), this._getFormatConfig(a)); var r = this._canAdjustMonth(a, -1, o, n) ? '<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_' + dpuuid + ".datepicker._adjustDate('#" + a.id + "', -" + i + ", 'M');\"" + ' title="' + q + '"><span class="ui-icon ui-icon-circle-triangle-' + (c ? "e" : "w") + '">' + q + "</span></a>" : e ? "" : '<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="' + q + '"><span class="ui-icon ui-icon-circle-triangle-' + (c ? "e" : "w") + '">' + q + "</span></a>"; var s = this._get(a, "nextText"); s = !f ? s : this.formatDate(s, this._daylightSavingAdjust(new Date(o, n + i, 1)), this._getFormatConfig(a)); var t = this._canAdjustMonth(a, +1, o, n) ? '<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_' + dpuuid + ".datepicker._adjustDate('#" + a.id + "', +" + i + ", 'M');\"" + ' title="' + s + '"><span class="ui-icon ui-icon-circle-triangle-' + (c ? "w" : "e") + '">' + s + "</span></a>" : e ? "" : '<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="' + s + '"><span class="ui-icon ui-icon-circle-triangle-' + (c ? "w" : "e") + '">' + s + "</span></a>"; var u = this._get(a, "currentText"); var v = this._get(a, "gotoCurrent") && a.currentDay ? k : b; u = !f ? u : this.formatDate(u, v, this._getFormatConfig(a)); var w = !a.inline ? '<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_' + dpuuid + '.datepicker._hideDatepicker();">' + this._get(a, "closeText") + "</button>" : ""; var x = d ? '<div class="ui-datepicker-buttonpane ui-widget-content">' + (c ? w : "") + (this._isInRange(a, v) ? '<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_' + dpuuid + ".datepicker._gotoToday('#" + a.id + "');\"" + ">" + u + "</button>" : "") + (c ? "" : w) + "</div>" : ""; var y = parseInt(this._get(a, "firstDay"), 10); y = isNaN(y) ? 0 : y; var z = this._get(a, "showWeek"); var A = this._get(a, "dayNames"); var B = this._get(a, "dayNamesShort"); var C = this._get(a, "dayNamesMin"); var D = this._get(a, "monthNames"); var E = this._get(a, "monthNamesShort"); var F = this._get(a, "beforeShowDay"); var G = this._get(a, "showOtherMonths"); var H = this._get(a, "selectOtherMonths"); var I = this._get(a, "calculateWeek") || this.iso8601Week; var J = this._getDefaultDate(a); var K = ""; for (var L = 0; L < g[0]; L++) { var M = ""; this.maxRows = 4; for (var N = 0; N < g[1]; N++) { var O = this._daylightSavingAdjust(new Date(o, n, a.selectedDay)); var P = " ui-corner-all"; var Q = ""; if (j) { Q += '<div class="ui-datepicker-group'; if (g[1] > 1) switch (N) { case 0: Q += " ui-datepicker-group-first"; P = " ui-corner-" + (c ? "right" : "left"); break; case g[1] - 1: Q += " ui-datepicker-group-last"; P = " ui-corner-" + (c ? "left" : "right"); break; default: Q += " ui-datepicker-group-middle"; P = ""; break } Q += '">' } Q += '<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix' + P + '">' + (/all|left/.test(P) && L == 0 ? c ? t : r : "") + (/all|right/.test(P) && L == 0 ? c ? r : t : "") + this._generateMonthYearHeader(a, n, o, l, m, L > 0 || N > 0, D, E) + '</div><table class="ui-datepicker-calendar"><thead>' + "<tr>"; var R = z ? '<th class="ui-datepicker-week-col">' + this._get(a, "weekHeader") + "</th>" : ""; for (var S = 0; S < 7; S++) { var T = (S + y) % 7; R += "<th" + ((S + y + 6) % 7 >= 5 ? ' class="ui-datepicker-week-end"' : "") + ">" + '<span title="' + A[T] + '">' + C[T] + "</span></th>" } Q += R + "</tr></thead><tbody>"; var U = this._getDaysInMonth(o, n); if (o == a.selectedYear && n == a.selectedMonth) a.selectedDay = Math.min(a.selectedDay, U); var V = (this._getFirstDayOfMonth(o, n) - y + 7) % 7; var W = Math.ceil((V + U) / 7); var X = j ? this.maxRows > W ? this.maxRows : W : W; this.maxRows = X; var Y = this._daylightSavingAdjust(new Date(o, n, 1 - V)); for (var Z = 0; Z < X; Z++) { Q += "<tr>"; var _ = !z ? "" : '<td class="ui-datepicker-week-col">' + this._get(a, "calculateWeek")(Y) + "</td>"; for (var S = 0; S < 7; S++) { var ba = F ? F.apply(a.input ? a.input[0] : null, [Y]) : [true, ""]; var bb = Y.getMonth() != n; var bc = bb && !H || !ba[0] || l && Y < l || m && Y > m; _ += '<td class="' + ((S + y + 6) % 7 >= 5 ? " ui-datepicker-week-end" : "") + (bb ? " ui-datepicker-other-month" : "") + (Y.getTime() == O.getTime() && n == a.selectedMonth && a._keyEvent || J.getTime() == Y.getTime() && J.getTime() == O.getTime() ? " " + this._dayOverClass : "") + (bc ? " " + this._unselectableClass + " ui-state-disabled" : "") + (bb && !G ? "" : " " + ba[1] + (Y.getTime() == k.getTime() ? " " + this._currentClass : "") + (Y.getTime() == b.getTime() ? " ui-datepicker-today" : "")) + '"' + ((!bb || G) && ba[2] ? ' title="' + ba[2] + '"' : "") + (bc ? "" : ' onclick="DP_jQuery_' + dpuuid + ".datepicker._selectDay('#" + a.id + "'," + Y.getMonth() + "," + Y.getFullYear() + ', this);return false;"') + ">" + (bb && !G ? "&#xa0;" : bc ? '<span class="ui-state-default">' + Y.getDate() + "</span>" : '<a class="ui-state-default' + (Y.getTime() == b.getTime() ? " ui-state-highlight" : "") + (Y.getTime() == k.getTime() ? " ui-state-active" : "") + (bb ? " ui-priority-secondary" : "") + '" href="#">' + Y.getDate() + "</a>") + "</td>"; Y.setDate(Y.getDate() + 1); Y = this._daylightSavingAdjust(Y) } Q += _ + "</tr>" } n++; if (n > 11) { n = 0; o++ } Q += "</tbody></table>" + (j ? "</div>" + (g[0] > 0 && N == g[1] - 1 ? '<div class="ui-datepicker-row-break"></div>' : "") : ""); M += Q } K += M } K += x + ($.browser.msie && parseInt($.browser.version, 10) < 7 && !a.inline ? '<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>' : ""); a._keyEvent = false; return K }, _generateMonthYearHeader: function (a, b, c, d, e, f, g, h) { var i = this._get(a, "changeMonth"); var j = this._get(a, "changeYear"); var k = this._get(a, "showMonthAfterYear"); var l = '<div class="ui-datepicker-title">'; var m = ""; if (f || !i) m += '<span class="ui-datepicker-month">' + g[b] + "</span>"; else { var n = d && d.getFullYear() == c; var o = e && e.getFullYear() == c; m += '<select class="ui-datepicker-month" ' + 'onchange="DP_jQuery_' + dpuuid + ".datepicker._selectMonthYear('#" + a.id + "', this, 'M');\" " + ">"; for (var p = 0; p < 12; p++) { if ((!n || p >= d.getMonth()) && (!o || p <= e.getMonth())) m += '<option value="' + p + '"' + (p == b ? ' selected="selected"' : "") + ">" + h[p] + "</option>" } m += "</select>" } if (!k) l += m + (f || !(i && j) ? "&#xa0;" : ""); if (!a.yearshtml) { a.yearshtml = ""; if (f || !j) l += '<span class="ui-datepicker-year">' + c + "</span>"; else { var q = this._get(a, "yearRange").split(":"); var r = (new Date).getFullYear(); var s = function (a) { var b = a.match(/c[+-].*/) ? c + parseInt(a.substring(1), 10) : a.match(/[+-].*/) ? r + parseInt(a, 10) : parseInt(a, 10); return isNaN(b) ? r : b }; var t = s(q[0]); var u = Math.max(t, s(q[1] || "")); t = d ? Math.max(t, d.getFullYear()) : t; u = e ? Math.min(u, e.getFullYear()) : u; a.yearshtml += '<select class="ui-datepicker-year" ' + 'onchange="DP_jQuery_' + dpuuid + ".datepicker._selectMonthYear('#" + a.id + "', this, 'Y');\" " + ">"; for (; t <= u; t++) { a.yearshtml += '<option value="' + t + '"' + (t == c ? ' selected="selected"' : "") + ">" + t + "</option>" } a.yearshtml += "</select>"; l += a.yearshtml; a.yearshtml = null } } l += this._get(a, "yearSuffix"); if (k) l += (f || !(i && j) ? "&#xa0;" : "") + m; l += "</div>"; return l }, _adjustInstDate: function (a, b, c) { var d = a.drawYear + (c == "Y" ? b : 0); var e = a.drawMonth + (c == "M" ? b : 0); var f = Math.min(a.selectedDay, this._getDaysInMonth(d, e)) + (c == "D" ? b : 0); var g = this._restrictMinMax(a, this._daylightSavingAdjust(new Date(d, e, f))); a.selectedDay = g.getDate(); a.drawMonth = a.selectedMonth = g.getMonth(); a.drawYear = a.selectedYear = g.getFullYear(); if (c == "M" || c == "Y") this._notifyChange(a) }, _restrictMinMax: function (a, b) { var c = this._getMinMaxDate(a, "min"); var d = this._getMinMaxDate(a, "max"); var e = c && b < c ? c : b; e = d && e > d ? d : e; return e }, _notifyChange: function (a) { var b = this._get(a, "onChangeMonthYear"); if (b) b.apply(a.input ? a.input[0] : null, [a.selectedYear, a.selectedMonth + 1, a]) }, _getNumberOfMonths: function (a) { var b = this._get(a, "numberOfMonths"); return b == null ? [1, 1] : typeof b == "number" ? [1, b] : b }, _getMinMaxDate: function (a, b) { return this._determineDate(a, this._get(a, b + "Date"), null) }, _getDaysInMonth: function (a, b) { return 32 - this._daylightSavingAdjust(new Date(a, b, 32)).getDate() }, _getFirstDayOfMonth: function (a, b) { return (new Date(a, b, 1)).getDay() }, _canAdjustMonth: function (a, b, c, d) { var e = this._getNumberOfMonths(a); var f = this._daylightSavingAdjust(new Date(c, d + (b < 0 ? b : e[0] * e[1]), 1)); if (b < 0) f.setDate(this._getDaysInMonth(f.getFullYear(), f.getMonth())); return this._isInRange(a, f) }, _isInRange: function (a, b) { var c = this._getMinMaxDate(a, "min"); var d = this._getMinMaxDate(a, "max"); return (!c || b.getTime() >= c.getTime()) && (!d || b.getTime() <= d.getTime()) }, _getFormatConfig: function (a) { var b = this._get(a, "shortYearCutoff"); b = typeof b != "string" ? b : (new Date).getFullYear() % 100 + parseInt(b, 10); return { shortYearCutoff: b, dayNamesShort: this._get(a, "dayNamesShort"), dayNames: this._get(a, "dayNames"), monthNamesShort: this._get(a, "monthNamesShort"), monthNames: this._get(a, "monthNames")} }, _formatDate: function (a, b, c, d) { if (!b) { a.currentDay = a.selectedDay; a.currentMonth = a.selectedMonth; a.currentYear = a.selectedYear } var e = b ? typeof b == "object" ? b : this._daylightSavingAdjust(new Date(d, c, b)) : this._daylightSavingAdjust(new Date(a.currentYear, a.currentMonth, a.currentDay)); return this.formatDate(this._get(a, "dateFormat"), e, this._getFormatConfig(a)) } }); $.fn.datepicker = function (a) { if (!this.length) { return this } if (!$.datepicker.initialized) { $(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv); $.datepicker.initialized = true } var b = Array.prototype.slice.call(arguments, 1); if (typeof a == "string" && (a == "isDisabled" || a == "getDate" || a == "widget")) return $.datepicker["_" + a + "Datepicker"].apply($.datepicker, [this[0]].concat(b)); if (a == "option" && arguments.length == 2 && typeof arguments[1] == "string") return $.datepicker["_" + a + "Datepicker"].apply($.datepicker, [this[0]].concat(b)); return this.each(function () { typeof a == "string" ? $.datepicker["_" + a + "Datepicker"].apply($.datepicker, [this].concat(b)) : $.datepicker._attachDatepicker(this, a) }) }; $.datepicker = new Datepicker; $.datepicker.initialized = false; $.datepicker.uuid = (new Date).getTime(); $.datepicker.version = "1.8.15"; window["DP_jQuery_" + dpuuid] = $ })(jQuery); (function (a, b) { a.widget("ui.progressbar", { options: { value: 0, max: 100 }, min: 0, _create: function () { this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({ role: "progressbar", "aria-valuemin": this.min, "aria-valuemax": this.options.max, "aria-valuenow": this._value() }); this.valueDiv = a("<div class='ui-progressbar-value ui-widget-header ui-corner-left'></div>").appendTo(this.element); this.oldValue = this._value(); this._refreshValue() }, destroy: function () { this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow"); this.valueDiv.remove(); a.Widget.prototype.destroy.apply(this, arguments) }, value: function (a) { if (a === b) { return this._value() } this._setOption("value", a); return this }, _setOption: function (b, c) { if (b === "value") { this.options.value = c; this._refreshValue(); if (this._value() === this.options.max) { this._trigger("complete") } } a.Widget.prototype._setOption.apply(this, arguments) }, _value: function () { var a = this.options.value; if (typeof a !== "number") { a = 0 } return Math.min(this.options.max, Math.max(this.min, a)) }, _percentage: function () { return 100 * this._value() / this.options.max }, _refreshValue: function () { var a = this.value(); var b = this._percentage(); if (this.oldValue !== a) { this.oldValue = a; this._trigger("change") } this.valueDiv.toggle(a > this.min).toggleClass("ui-corner-right", a === this.options.max).width(b.toFixed(0) + "%"); this.element.attr("aria-valuenow", a) } }); a.extend(a.ui.progressbar, { version: "1.8.15" }) })(jQuery); jQuery.effects || function (a, b) { function l(b) { if (!b || typeof b === "number" || a.fx.speeds[b]) { return true } if (typeof b === "string" && !a.effects[b]) { return true } return false } function k(b, c, d, e) { if (typeof b == "object") { e = c; d = null; c = b; b = c.effect } if (a.isFunction(c)) { e = c; d = null; c = {} } if (typeof c == "number" || a.fx.speeds[c]) { e = d; d = c; c = {} } if (a.isFunction(d)) { e = d; d = null } c = c || {}; d = d || c.duration; d = a.fx.off ? 0 : typeof d == "number" ? d : d in a.fx.speeds ? a.fx.speeds[d] : a.fx.speeds._default; e = e || c.complete; return [b, c, d, e] } function j(a, b) { var c = { _: 0 }, d; for (d in b) { if (a[d] != b[d]) { c[d] = b[d] } } return c } function i(b) { var c, d; for (c in b) { d = b[c]; if (d == null || a.isFunction(d) || c in g || /scrollbar/.test(c) || !/color/i.test(c) && isNaN(parseFloat(d))) { delete b[c] } } return b } function h() { var a = document.defaultView ? document.defaultView.getComputedStyle(this, null) : this.currentStyle, b = {}, c, d; if (a && a.length && a[0] && a[a[0]]) { var e = a.length; while (e--) { c = a[e]; if (typeof a[c] == "string") { d = c.replace(/\-(\w)/g, function (a, b) { return b.toUpperCase() }); b[d] = a[c] } } } else { for (c in a) { if (typeof a[c] === "string") { b[c] = a[c] } } } return b } function d(b, d) { var e; do { e = a.curCSS(b, d); if (e != "" && e != "transparent" || a.nodeName(b, "body")) break; d = "backgroundColor" } while (b = b.parentNode); return c(e) } function c(b) { var c; if (b && b.constructor == Array && b.length == 3) return b; if (c = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(b)) return [parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10)]; if (c = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(b)) return [parseFloat(c[1]) * 2.55, parseFloat(c[2]) * 2.55, parseFloat(c[3]) * 2.55]; if (c = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(b)) return [parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16)]; if (c = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(b)) return [parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16)]; if (c = /rgba\(0, 0, 0, 0\)/.exec(b)) return e["transparent"]; return e[a.trim(b).toLowerCase()] } a.effects = {}; a.each(["backgroundColor", "borderBottomColor", "borderLeftColor", "borderRightColor", "borderTopColor", "borderColor", "color", "outlineColor"], function (b, e) { a.fx.step[e] = function (a) { if (!a.colorInit) { a.start = d(a.elem, e); a.end = c(a.end); a.colorInit = true } a.elem.style[e] = "rgb(" + Math.max(Math.min(parseInt(a.pos * (a.end[0] - a.start[0]) + a.start[0], 10), 255), 0) + "," + Math.max(Math.min(parseInt(a.pos * (a.end[1] - a.start[1]) + a.start[1], 10), 255), 0) + "," + Math.max(Math.min(parseInt(a.pos * (a.end[2] - a.start[2]) + a.start[2], 10), 255), 0) + ")" } }); var e = { aqua: [0, 255, 255], azure: [240, 255, 255], beige: [245, 245, 220], black: [0, 0, 0], blue: [0, 0, 255], brown: [165, 42, 42], cyan: [0, 255, 255], darkblue: [0, 0, 139], darkcyan: [0, 139, 139], darkgrey: [169, 169, 169], darkgreen: [0, 100, 0], darkkhaki: [189, 183, 107], darkmagenta: [139, 0, 139], darkolivegreen: [85, 107, 47], darkorange: [255, 140, 0], darkorchid: [153, 50, 204], darkred: [139, 0, 0], darksalmon: [233, 150, 122], darkviolet: [148, 0, 211], fuchsia: [255, 0, 255], gold: [255, 215, 0], green: [0, 128, 0], indigo: [75, 0, 130], khaki: [240, 230, 140], lightblue: [173, 216, 230], lightcyan: [224, 255, 255], lightgreen: [144, 238, 144], lightgrey: [211, 211, 211], lightpink: [255, 182, 193], lightyellow: [255, 255, 224], lime: [0, 255, 0], magenta: [255, 0, 255], maroon: [128, 0, 0], navy: [0, 0, 128], olive: [128, 128, 0], orange: [255, 165, 0], pink: [255, 192, 203], purple: [128, 0, 128], violet: [128, 0, 128], red: [255, 0, 0], silver: [192, 192, 192], white: [255, 255, 255], yellow: [255, 255, 0], transparent: [255, 255, 255] }; var f = ["add", "remove", "toggle"], g = { border: 1, borderBottom: 1, borderColor: 1, borderLeft: 1, borderRight: 1, borderTop: 1, borderWidth: 1, margin: 1, padding: 1 }; a.effects.animateClass = function (b, c, d, e) { if (a.isFunction(d)) { e = d; d = null } return this.queue(function () { var g = a(this), k = g.attr("style") || " ", l = i(h.call(this)), m, n = g.attr("class"); a.each(f, function (a, c) { if (b[c]) { g[c + "Class"](b[c]) } }); m = i(h.call(this)); g.attr("class", n); g.animate(j(l, m), { queue: false, duration: c, easing: d, complete: function () { a.each(f, function (a, c) { if (b[c]) { g[c + "Class"](b[c]) } }); if (typeof g.attr("style") == "object") { g.attr("style").cssText = ""; g.attr("style").cssText = k } else { g.attr("style", k) } if (e) { e.apply(this, arguments) } a.dequeue(this) } }) }) }; a.fn.extend({ _addClass: a.fn.addClass, addClass: function (b, c, d, e) { return c ? a.effects.animateClass.apply(this, [{ add: b }, c, d, e]) : this._addClass(b) }, _removeClass: a.fn.removeClass, removeClass: function (b, c, d, e) { return c ? a.effects.animateClass.apply(this, [{ remove: b }, c, d, e]) : this._removeClass(b) }, _toggleClass: a.fn.toggleClass, toggleClass: function (c, d, e, f, g) { if (typeof d == "boolean" || d === b) { if (!e) { return this._toggleClass(c, d) } else { return a.effects.animateClass.apply(this, [d ? { add: c} : { remove: c }, e, f, g]) } } else { return a.effects.animateClass.apply(this, [{ toggle: c }, d, e, f]) } }, switchClass: function (b, c, d, e, f) { return a.effects.animateClass.apply(this, [{ add: c, remove: b }, d, e, f]) } }); a.extend(a.effects, { version: "1.8.15", save: function (a, b) { for (var c = 0; c < b.length; c++) { if (b[c] !== null) a.data("ec.storage." + b[c], a[0].style[b[c]]) } }, restore: function (a, b) { for (var c = 0; c < b.length; c++) { if (b[c] !== null) a.css(b[c], a.data("ec.storage." + b[c])) } }, setMode: function (a, b) { if (b == "toggle") b = a.is(":hidden") ? "show" : "hide"; return b }, getBaseline: function (a, b) { var c, d; switch (a[0]) { case "top": c = 0; break; case "middle": c = .5; break; case "bottom": c = 1; break; default: c = a[0] / b.height } switch (a[1]) { case "left": d = 0; break; case "center": d = .5; break; case "right": d = 1; break; default: d = a[1] / b.width } return { x: d, y: c} }, createWrapper: function (b) { if (b.parent().is(".ui-effects-wrapper")) { return b.parent() } var c = { width: b.outerWidth(true), height: b.outerHeight(true), "float": b.css("float") }, d = a("<div></div>").addClass("ui-effects-wrapper").css({ fontSize: "100%", background: "transparent", border: "none", margin: 0, padding: 0 }); b.wrap(d); d = b.parent(); if (b.css("position") == "static") { d.css({ position: "relative" }); b.css({ position: "relative" }) } else { a.extend(c, { position: b.css("position"), zIndex: b.css("z-index") }); a.each(["top", "left", "bottom", "right"], function (a, d) { c[d] = b.css(d); if (isNaN(parseInt(c[d], 10))) { c[d] = "auto" } }); b.css({ position: "relative", top: 0, left: 0, right: "auto", bottom: "auto" }) } return d.css(c).show() }, removeWrapper: function (a) { if (a.parent().is(".ui-effects-wrapper")) return a.parent().replaceWith(a); return a }, setTransition: function (b, c, d, e) { e = e || {}; a.each(c, function (a, c) { unit = b.cssUnit(c); if (unit[0] > 0) e[c] = unit[0] * d + unit[1] }); return e } }); a.fn.extend({ effect: function (b, c, d, e) { var f = k.apply(this, arguments), g = { options: f[1], duration: f[2], callback: f[3] }, h = g.options.mode, i = a.effects[b]; if (a.fx.off || !i) { if (h) { return this[h](g.duration, g.callback) } else { return this.each(function () { if (g.callback) { g.callback.call(this) } }) } } return i.call(this, g) }, _show: a.fn.show, show: function (a) { if (l(a)) { return this._show.apply(this, arguments) } else { var b = k.apply(this, arguments); b[1].mode = "show"; return this.effect.apply(this, b) } }, _hide: a.fn.hide, hide: function (a) { if (l(a)) { return this._hide.apply(this, arguments) } else { var b = k.apply(this, arguments); b[1].mode = "hide"; return this.effect.apply(this, b) } }, __toggle: a.fn.toggle, toggle: function (b) { if (l(b) || typeof b === "boolean" || a.isFunction(b)) { return this.__toggle.apply(this, arguments) } else { var c = k.apply(this, arguments); c[1].mode = "toggle"; return this.effect.apply(this, c) } }, cssUnit: function (b) { var c = this.css(b), d = []; a.each(["em", "px", "%", "pt"], function (a, b) { if (c.indexOf(b) > 0) d = [parseFloat(c), b] }); return d } }); a.easing.jswing = a.easing.swing; a.extend(a.easing, { def: "easeOutQuad", swing: function (b, c, d, e, f) { return a.easing[a.easing.def](b, c, d, e, f) }, easeInQuad: function (a, b, c, d, e) { return d * (b /= e) * b + c }, easeOutQuad: function (a, b, c, d, e) { return -d * (b /= e) * (b - 2) + c }, easeInOutQuad: function (a, b, c, d, e) { if ((b /= e / 2) < 1) return d / 2 * b * b + c; return -d / 2 * (--b * (b - 2) - 1) + c }, easeInCubic: function (a, b, c, d, e) { return d * (b /= e) * b * b + c }, easeOutCubic: function (a, b, c, d, e) { return d * ((b = b / e - 1) * b * b + 1) + c }, easeInOutCubic: function (a, b, c, d, e) { if ((b /= e / 2) < 1) return d / 2 * b * b * b + c; return d / 2 * ((b -= 2) * b * b + 2) + c }, easeInQuart: function (a, b, c, d, e) { return d * (b /= e) * b * b * b + c }, easeOutQuart: function (a, b, c, d, e) { return -d * ((b = b / e - 1) * b * b * b - 1) + c }, easeInOutQuart: function (a, b, c, d, e) { if ((b /= e / 2) < 1) return d / 2 * b * b * b * b + c; return -d / 2 * ((b -= 2) * b * b * b - 2) + c }, easeInQuint: function (a, b, c, d, e) { return d * (b /= e) * b * b * b * b + c }, easeOutQuint: function (a, b, c, d, e) { return d * ((b = b / e - 1) * b * b * b * b + 1) + c }, easeInOutQuint: function (a, b, c, d, e) { if ((b /= e / 2) < 1) return d / 2 * b * b * b * b * b + c; return d / 2 * ((b -= 2) * b * b * b * b + 2) + c }, easeInSine: function (a, b, c, d, e) { return -d * Math.cos(b / e * (Math.PI / 2)) + d + c }, easeOutSine: function (a, b, c, d, e) { return d * Math.sin(b / e * (Math.PI / 2)) + c }, easeInOutSine: function (a, b, c, d, e) { return -d / 2 * (Math.cos(Math.PI * b / e) - 1) + c }, easeInExpo: function (a, b, c, d, e) { return b == 0 ? c : d * Math.pow(2, 10 * (b / e - 1)) + c }, easeOutExpo: function (a, b, c, d, e) { return b == e ? c + d : d * (-Math.pow(2, -10 * b / e) + 1) + c }, easeInOutExpo: function (a, b, c, d, e) { if (b == 0) return c; if (b == e) return c + d; if ((b /= e / 2) < 1) return d / 2 * Math.pow(2, 10 * (b - 1)) + c; return d / 2 * (-Math.pow(2, -10 * --b) + 2) + c }, easeInCirc: function (a, b, c, d, e) { return -d * (Math.sqrt(1 - (b /= e) * b) - 1) + c }, easeOutCirc: function (a, b, c, d, e) { return d * Math.sqrt(1 - (b = b / e - 1) * b) + c }, easeInOutCirc: function (a, b, c, d, e) { if ((b /= e / 2) < 1) return -d / 2 * (Math.sqrt(1 - b * b) - 1) + c; return d / 2 * (Math.sqrt(1 - (b -= 2) * b) + 1) + c }, easeInElastic: function (a, b, c, d, e) { var f = 1.70158; var g = 0; var h = d; if (b == 0) return c; if ((b /= e) == 1) return c + d; if (!g) g = e * .3; if (h < Math.abs(d)) { h = d; var f = g / 4 } else var f = g / (2 * Math.PI) * Math.asin(d / h); return -(h * Math.pow(2, 10 * (b -= 1)) * Math.sin((b * e - f) * 2 * Math.PI / g)) + c }, easeOutElastic: function (a, b, c, d, e) { var f = 1.70158; var g = 0; var h = d; if (b == 0) return c; if ((b /= e) == 1) return c + d; if (!g) g = e * .3; if (h < Math.abs(d)) { h = d; var f = g / 4 } else var f = g / (2 * Math.PI) * Math.asin(d / h); return h * Math.pow(2, -10 * b) * Math.sin((b * e - f) * 2 * Math.PI / g) + d + c }, easeInOutElastic: function (a, b, c, d, e) { var f = 1.70158; var g = 0; var h = d; if (b == 0) return c; if ((b /= e / 2) == 2) return c + d; if (!g) g = e * .3 * 1.5; if (h < Math.abs(d)) { h = d; var f = g / 4 } else var f = g / (2 * Math.PI) * Math.asin(d / h); if (b < 1) return -.5 * h * Math.pow(2, 10 * (b -= 1)) * Math.sin((b * e - f) * 2 * Math.PI / g) + c; return h * Math.pow(2, -10 * (b -= 1)) * Math.sin((b * e - f) * 2 * Math.PI / g) * .5 + d + c }, easeInBack: function (a, c, d, e, f, g) { if (g == b) g = 1.70158; return e * (c /= f) * c * ((g + 1) * c - g) + d }, easeOutBack: function (a, c, d, e, f, g) { if (g == b) g = 1.70158; return e * ((c = c / f - 1) * c * ((g + 1) * c + g) + 1) + d }, easeInOutBack: function (a, c, d, e, f, g) { if (g == b) g = 1.70158; if ((c /= f / 2) < 1) return e / 2 * c * c * (((g *= 1.525) + 1) * c - g) + d; return e / 2 * ((c -= 2) * c * (((g *= 1.525) + 1) * c + g) + 2) + d }, easeInBounce: function (b, c, d, e, f) { return e - a.easing.easeOutBounce(b, f - c, 0, e, f) + d }, easeOutBounce: function (a, b, c, d, e) { if ((b /= e) < 1 / 2.75) { return d * 7.5625 * b * b + c } else if (b < 2 / 2.75) { return d * (7.5625 * (b -= 1.5 / 2.75) * b + .75) + c } else if (b < 2.5 / 2.75) { return d * (7.5625 * (b -= 2.25 / 2.75) * b + .9375) + c } else { return d * (7.5625 * (b -= 2.625 / 2.75) * b + .984375) + c } }, easeInOutBounce: function (b, c, d, e, f) { if (c < f / 2) return a.easing.easeInBounce(b, c * 2, 0, e, f) * .5 + d; return a.easing.easeOutBounce(b, c * 2 - f, 0, e, f) * .5 + e * .5 + d } }) } (jQuery); (function (a, b) { a.effects.blind = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right"]; var e = a.effects.setMode(c, b.options.mode || "hide"); var f = b.options.direction || "vertical"; a.effects.save(c, d); c.show(); var g = a.effects.createWrapper(c).css({ overflow: "hidden" }); var h = f == "vertical" ? "height" : "width"; var i = f == "vertical" ? g.height() : g.width(); if (e == "show") g.css(h, 0); var j = {}; j[h] = e == "show" ? i : 0; g.animate(j, b.duration, b.options.easing, function () { if (e == "hide") c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(c[0], arguments); c.dequeue() }) }) } })(jQuery); (function (a, b) { a.effects.bounce = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right"]; var e = a.effects.setMode(c, b.options.mode || "effect"); var f = b.options.direction || "up"; var g = b.options.distance || 20; var h = b.options.times || 5; var i = b.duration || 250; if (/show|hide/.test(e)) d.push("opacity"); a.effects.save(c, d); c.show(); a.effects.createWrapper(c); var j = f == "up" || f == "down" ? "top" : "left"; var k = f == "up" || f == "left" ? "pos" : "neg"; var g = b.options.distance || (j == "top" ? c.outerHeight({ margin: true }) / 3 : c.outerWidth({ margin: true }) / 3); if (e == "show") c.css("opacity", 0).css(j, k == "pos" ? -g : g); if (e == "hide") g = g / (h * 2); if (e != "hide") h--; if (e == "show") { var l = { opacity: 1 }; l[j] = (k == "pos" ? "+=" : "-=") + g; c.animate(l, i / 2, b.options.easing); g = g / 2; h-- } for (var m = 0; m < h; m++) { var n = {}, p = {}; n[j] = (k == "pos" ? "-=" : "+=") + g; p[j] = (k == "pos" ? "+=" : "-=") + g; c.animate(n, i / 2, b.options.easing).animate(p, i / 2, b.options.easing); g = e == "hide" ? g * 2 : g / 2 } if (e == "hide") { var l = { opacity: 0 }; l[j] = (k == "pos" ? "-=" : "+=") + g; c.animate(l, i / 2, b.options.easing, function () { c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments) }) } else { var n = {}, p = {}; n[j] = (k == "pos" ? "-=" : "+=") + g; p[j] = (k == "pos" ? "+=" : "-=") + g; c.animate(n, i / 2, b.options.easing).animate(p, i / 2, b.options.easing, function () { a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments) }) } c.queue("fx", function () { c.dequeue() }); c.dequeue() }) } })(jQuery); (function (a, b) { a.effects.clip = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right", "height", "width"]; var e = a.effects.setMode(c, b.options.mode || "hide"); var f = b.options.direction || "vertical"; a.effects.save(c, d); c.show(); var g = a.effects.createWrapper(c).css({ overflow: "hidden" }); var h = c[0].tagName == "IMG" ? g : c; var i = { size: f == "vertical" ? "height" : "width", position: f == "vertical" ? "top" : "left" }; var j = f == "vertical" ? h.height() : h.width(); if (e == "show") { h.css(i.size, 0); h.css(i.position, j / 2) } var k = {}; k[i.size] = e == "show" ? j : 0; k[i.position] = e == "show" ? 0 : j / 2; h.animate(k, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { if (e == "hide") c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(c[0], arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.drop = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right", "opacity"]; var e = a.effects.setMode(c, b.options.mode || "hide"); var f = b.options.direction || "left"; a.effects.save(c, d); c.show(); a.effects.createWrapper(c); var g = f == "up" || f == "down" ? "top" : "left"; var h = f == "up" || f == "left" ? "pos" : "neg"; var i = b.options.distance || (g == "top" ? c.outerHeight({ margin: true }) / 2 : c.outerWidth({ margin: true }) / 2); if (e == "show") c.css("opacity", 0).css(g, h == "pos" ? -i : i); var j = { opacity: e == "show" ? 1 : 0 }; j[g] = (e == "show" ? h == "pos" ? "+=" : "-=" : h == "pos" ? "-=" : "+=") + i; c.animate(j, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { if (e == "hide") c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.explode = function (b) { return this.queue(function () { var c = b.options.pieces ? Math.round(Math.sqrt(b.options.pieces)) : 3; var d = b.options.pieces ? Math.round(Math.sqrt(b.options.pieces)) : 3; b.options.mode = b.options.mode == "toggle" ? a(this).is(":visible") ? "hide" : "show" : b.options.mode; var e = a(this).show().css("visibility", "hidden"); var f = e.offset(); f.top -= parseInt(e.css("marginTop"), 10) || 0; f.left -= parseInt(e.css("marginLeft"), 10) || 0; var g = e.outerWidth(true); var h = e.outerHeight(true); for (var i = 0; i < c; i++) { for (var j = 0; j < d; j++) { e.clone().appendTo("body").wrap("<div></div>").css({ position: "absolute", visibility: "visible", left: -j * (g / d), top: -i * (h / c) }).parent().addClass("ui-effects-explode").css({ position: "absolute", overflow: "hidden", width: g / d, height: h / c, left: f.left + j * (g / d) + (b.options.mode == "show" ? (j - Math.floor(d / 2)) * (g / d) : 0), top: f.top + i * (h / c) + (b.options.mode == "show" ? (i - Math.floor(c / 2)) * (h / c) : 0), opacity: b.options.mode == "show" ? 0 : 1 }).animate({ left: f.left + j * (g / d) + (b.options.mode == "show" ? 0 : (j - Math.floor(d / 2)) * (g / d)), top: f.top + i * (h / c) + (b.options.mode == "show" ? 0 : (i - Math.floor(c / 2)) * (h / c)), opacity: b.options.mode == "show" ? 1 : 0 }, b.duration || 500) } } setTimeout(function () { b.options.mode == "show" ? e.css({ visibility: "visible" }) : e.css({ visibility: "visible" }).hide(); if (b.callback) b.callback.apply(e[0]); e.dequeue(); a("div.ui-effects-explode").remove() }, b.duration || 500) }) } })(jQuery); (function (a, b) { a.effects.fade = function (b) { return this.queue(function () { var c = a(this), d = a.effects.setMode(c, b.options.mode || "hide"); c.animate({ opacity: d }, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { b.callback && b.callback.apply(this, arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.fold = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right"]; var e = a.effects.setMode(c, b.options.mode || "hide"); var f = b.options.size || 15; var g = !!b.options.horizFirst; var h = b.duration ? b.duration / 2 : a.fx.speeds._default / 2; a.effects.save(c, d); c.show(); var i = a.effects.createWrapper(c).css({ overflow: "hidden" }); var j = e == "show" != g; var k = j ? ["width", "height"] : ["height", "width"]; var l = j ? [i.width(), i.height()] : [i.height(), i.width()]; var m = /([0-9]+)%/.exec(f); if (m) f = parseInt(m[1], 10) / 100 * l[e == "hide" ? 0 : 1]; if (e == "show") i.css(g ? { height: 0, width: f} : { height: f, width: 0 }); var n = {}, p = {}; n[k[0]] = e == "show" ? l[0] : f; p[k[1]] = e == "show" ? l[1] : 0; i.animate(n, h, b.options.easing).animate(p, h, b.options.easing, function () { if (e == "hide") c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(c[0], arguments); c.dequeue() }) }) } })(jQuery); (function (a, b) { a.effects.highlight = function (b) { return this.queue(function () { var c = a(this), d = ["backgroundImage", "backgroundColor", "opacity"], e = a.effects.setMode(c, b.options.mode || "show"), f = { backgroundColor: c.css("backgroundColor") }; if (e == "hide") { f.opacity = 0 } a.effects.save(c, d); c.show().css({ backgroundImage: "none", backgroundColor: b.options.color || "#ffff99" }).animate(f, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { e == "hide" && c.hide(); a.effects.restore(c, d); e == "show" && !a.support.opacity && this.style.removeAttribute("filter"); b.callback && b.callback.apply(this, arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.pulsate = function (b) { return this.queue(function () { var c = a(this), d = a.effects.setMode(c, b.options.mode || "show"); times = (b.options.times || 5) * 2 - 1; duration = b.duration ? b.duration / 2 : a.fx.speeds._default / 2, isVisible = c.is(":visible"), animateTo = 0; if (!isVisible) { c.css("opacity", 0).show(); animateTo = 1 } if (d == "hide" && isVisible || d == "show" && !isVisible) { times-- } for (var e = 0; e < times; e++) { c.animate({ opacity: animateTo }, duration, b.options.easing); animateTo = (animateTo + 1) % 2 } c.animate({ opacity: animateTo }, duration, b.options.easing, function () { if (animateTo == 0) { c.hide() } b.callback && b.callback.apply(this, arguments) }); c.queue("fx", function () { c.dequeue() }).dequeue() }) } })(jQuery); (function (a, b) { a.effects.puff = function (b) { return this.queue(function () { var c = a(this), d = a.effects.setMode(c, b.options.mode || "hide"), e = parseInt(b.options.percent, 10) || 150, f = e / 100, g = { height: c.height(), width: c.width() }; a.extend(b.options, { fade: true, mode: d, percent: d == "hide" ? e : 100, from: d == "hide" ? g : { height: g.height * f, width: g.width * f} }); c.effect("scale", b.options, b.duration, b.callback); c.dequeue() }) }; a.effects.scale = function (b) { return this.queue(function () { var c = a(this); var d = a.extend(true, {}, b.options); var e = a.effects.setMode(c, b.options.mode || "effect"); var f = parseInt(b.options.percent, 10) || (parseInt(b.options.percent, 10) == 0 ? 0 : e == "hide" ? 0 : 100); var g = b.options.direction || "both"; var h = b.options.origin; if (e != "effect") { d.origin = h || ["middle", "center"]; d.restore = true } var i = { height: c.height(), width: c.width() }; c.from = b.options.from || (e == "show" ? { height: 0, width: 0} : i); var j = { y: g != "horizontal" ? f / 100 : 1, x: g != "vertical" ? f / 100 : 1 }; c.to = { height: i.height * j.y, width: i.width * j.x }; if (b.options.fade) { if (e == "show") { c.from.opacity = 0; c.to.opacity = 1 } if (e == "hide") { c.from.opacity = 1; c.to.opacity = 0 } } d.from = c.from; d.to = c.to; d.mode = e; c.effect("size", d, b.duration, b.callback); c.dequeue() }) }; a.effects.size = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right", "width", "height", "overflow", "opacity"]; var e = ["position", "top", "bottom", "left", "right", "overflow", "opacity"]; var f = ["width", "height", "overflow"]; var g = ["fontSize"]; var h = ["borderTopWidth", "borderBottomWidth", "paddingTop", "paddingBottom"]; var i = ["borderLeftWidth", "borderRightWidth", "paddingLeft", "paddingRight"]; var j = a.effects.setMode(c, b.options.mode || "effect"); var k = b.options.restore || false; var l = b.options.scale || "both"; var m = b.options.origin; var n = { height: c.height(), width: c.width() }; c.from = b.options.from || n; c.to = b.options.to || n; if (m) { var p = a.effects.getBaseline(m, n); c.from.top = (n.height - c.from.height) * p.y; c.from.left = (n.width - c.from.width) * p.x; c.to.top = (n.height - c.to.height) * p.y; c.to.left = (n.width - c.to.width) * p.x } var q = { from: { y: c.from.height / n.height, x: c.from.width / n.width }, to: { y: c.to.height / n.height, x: c.to.width / n.width} }; if (l == "box" || l == "both") { if (q.from.y != q.to.y) { d = d.concat(h); c.from = a.effects.setTransition(c, h, q.from.y, c.from); c.to = a.effects.setTransition(c, h, q.to.y, c.to) } if (q.from.x != q.to.x) { d = d.concat(i); c.from = a.effects.setTransition(c, i, q.from.x, c.from); c.to = a.effects.setTransition(c, i, q.to.x, c.to) } } if (l == "content" || l == "both") { if (q.from.y != q.to.y) { d = d.concat(g); c.from = a.effects.setTransition(c, g, q.from.y, c.from); c.to = a.effects.setTransition(c, g, q.to.y, c.to) } } a.effects.save(c, k ? d : e); c.show(); a.effects.createWrapper(c); c.css("overflow", "hidden").css(c.from); if (l == "content" || l == "both") { h = h.concat(["marginTop", "marginBottom"]).concat(g); i = i.concat(["marginLeft", "marginRight"]); f = d.concat(h).concat(i); c.find("*[width]").each(function () { child = a(this); if (k) a.effects.save(child, f); var c = { height: child.height(), width: child.width() }; child.from = { height: c.height * q.from.y, width: c.width * q.from.x }; child.to = { height: c.height * q.to.y, width: c.width * q.to.x }; if (q.from.y != q.to.y) { child.from = a.effects.setTransition(child, h, q.from.y, child.from); child.to = a.effects.setTransition(child, h, q.to.y, child.to) } if (q.from.x != q.to.x) { child.from = a.effects.setTransition(child, i, q.from.x, child.from); child.to = a.effects.setTransition(child, i, q.to.x, child.to) } child.css(child.from); child.animate(child.to, b.duration, b.options.easing, function () { if (k) a.effects.restore(child, f) }) }) } c.animate(c.to, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { if (c.to.opacity === 0) { c.css("opacity", c.from.opacity) } if (j == "hide") c.hide(); a.effects.restore(c, k ? d : e); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.shake = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right"]; var e = a.effects.setMode(c, b.options.mode || "effect"); var f = b.options.direction || "left"; var g = b.options.distance || 20; var h = b.options.times || 3; var i = b.duration || b.options.duration || 140; a.effects.save(c, d); c.show(); a.effects.createWrapper(c); var j = f == "up" || f == "down" ? "top" : "left"; var k = f == "up" || f == "left" ? "pos" : "neg"; var l = {}, m = {}, n = {}; l[j] = (k == "pos" ? "-=" : "+=") + g; m[j] = (k == "pos" ? "+=" : "-=") + g * 2; n[j] = (k == "pos" ? "-=" : "+=") + g * 2; c.animate(l, i, b.options.easing); for (var p = 1; p < h; p++) { c.animate(m, i, b.options.easing).animate(n, i, b.options.easing) } c.animate(m, i, b.options.easing).animate(l, i / 2, b.options.easing, function () { a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments) }); c.queue("fx", function () { c.dequeue() }); c.dequeue() }) } })(jQuery); (function (a, b) { a.effects.slide = function (b) { return this.queue(function () { var c = a(this), d = ["position", "top", "bottom", "left", "right"]; var e = a.effects.setMode(c, b.options.mode || "show"); var f = b.options.direction || "left"; a.effects.save(c, d); c.show(); a.effects.createWrapper(c).css({ overflow: "hidden" }); var g = f == "up" || f == "down" ? "top" : "left"; var h = f == "up" || f == "left" ? "pos" : "neg"; var i = b.options.distance || (g == "top" ? c.outerHeight({ margin: true }) : c.outerWidth({ margin: true })); if (e == "show") c.css(g, h == "pos" ? isNaN(i) ? "-" + i : -i : i); var j = {}; j[g] = (e == "show" ? h == "pos" ? "+=" : "-=" : h == "pos" ? "-=" : "+=") + i; c.animate(j, { queue: false, duration: b.duration, easing: b.options.easing, complete: function () { if (e == "hide") c.hide(); a.effects.restore(c, d); a.effects.removeWrapper(c); if (b.callback) b.callback.apply(this, arguments); c.dequeue() } }) }) } })(jQuery); (function (a, b) { a.effects.transfer = function (b) { return this.queue(function () { var c = a(this), d = a(b.options.to), e = d.offset(), f = { top: e.top, left: e.left, height: d.innerHeight(), width: d.innerWidth() }, g = c.offset(), h = a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({ top: g.top, left: g.left, height: c.innerHeight(), width: c.innerWidth(), position: "absolute" }).animate(f, b.duration, b.options.easing, function () { h.remove(); b.callback && b.callback.apply(c[0], arguments); c.dequeue() }) }) } })(jQuery);// easing plugin
jQuery.easing.jswing=jQuery.easing.swing;jQuery.extend(jQuery.easing,{def:"easeOutQuad",swing:function(e,d,a,b,c){return jQuery.easing[jQuery.easing.def](e,d,a,b,c)},easeInQuad:function(e,a,b,c,d){return c*(a/=d)*a+b},easeOutQuad:function(e,a,b,c,d){return-c*(a/=d)*(a-2)+b},easeInOutQuad:function(e,a,b,c,d){return(a/=d/2)<1?c/2*a*a+b:-c/2*(--a*(a-2)-1)+b},easeInCubic:function(e,a,b,c,d){return c*(a/=d)*a*a+b},easeOutCubic:function(e,a,b,c,d){return c*((a=a/d-1)*a*a+1)+b},easeInOutCubic:function(e,a,b,c,d){return(a/=d/2)<1?c/2*a*a*a+b:c/2*((a-=2)*a*a+2)+b},easeInQuart:function(e,a,b,c,d){return c*(a/=d)*a*a*a+b},easeOutQuart:function(e,a,b,c,d){return-c*((a=a/d-1)*a*a*a-1)+b},easeInOutQuart:function(e,a,b,c,d){return(a/=d/2)<1?c/2*a*a*a*a+b:-c/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(e,a,b,c,d){return c*(a/=d)*a*a*a*a+b},easeOutQuint:function(e,a,b,c,d){return c*((a=a/d-1)*a*a*a*a+1)+b},easeInOutQuint:function(e,a,b,c,d){return(a/=d/2)<1?c/2*a*a*a*a*a+b:c/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(e,d,b,a,c){return-a*Math.cos(d/c*(Math.PI/2))+a+b},easeOutSine:function(e,d,a,b,c){return b*Math.sin(d/c*(Math.PI/2))+a},easeInOutSine:function(e,d,a,b,c){return-b/2*(Math.cos(Math.PI*d/c)-1)+a},easeInExpo:function(e,b,a,c,d){return b==0?a:c*Math.pow(2,10*(b/d-1))+a},easeOutExpo:function(e,d,a,b,c){return d==c?a+b:b*(-Math.pow(2,-10*d/c)+1)+a},easeInOutExpo:function(e,a,b,c,d){return a==0?b:a==d?b+c:(a/=d/2)<1?c/2*Math.pow(2,10*(a-1))+b:c/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(e,a,b,c,d){return-c*(Math.sqrt(1-(a/=d)*a)-1)+b},easeOutCirc:function(e,a,b,c,d){return c*Math.sqrt(1-(a=a/d-1)*a)+b},easeInOutCirc:function(e,a,b,c,d){return(a/=d/2)<1?-c/2*(Math.sqrt(1-a*a)-1)+b:c/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(h,d,e,a,f){var g=1.70158,b=0,c=a;if(d==0)return e;if((d/=f)==1)return e+a;if(!b)b=f*.3;if(c<Math.abs(a)){c=a;var g=b/4}else var g=b/(2*Math.PI)*Math.asin(a/c);return-(c*Math.pow(2,10*(d-=1))*Math.sin((d*f-g)*2*Math.PI/b))+e},easeOutElastic:function(h,d,e,a,f){var g=1.70158,b=0,c=a;if(d==0)return e;if((d/=f)==1)return e+a;if(!b)b=f*.3;if(c<Math.abs(a)){c=a;var g=b/4}else var g=b/(2*Math.PI)*Math.asin(a/c);return c*Math.pow(2,-10*d)*Math.sin((d*f-g)*2*Math.PI/b)+a+e},easeInOutElastic:function(h,a,e,b,f){var g=1.70158,c=0,d=b;if(a==0)return e;if((a/=f/2)==2)return e+b;if(!c)c=f*.3*1.5;if(d<Math.abs(b)){d=b;var g=c/4}else var g=c/(2*Math.PI)*Math.asin(b/d);return a<1?-.5*d*Math.pow(2,10*(a-=1))*Math.sin((a*f-g)*2*Math.PI/c)+e:d*Math.pow(2,-10*(a-=1))*Math.sin((a*f-g)*2*Math.PI/c)*.5+b+e},easeInBack:function(f,b,c,d,e,a){if(a==undefined)a=1.70158;return d*(b/=e)*b*((a+1)*b-a)+c},easeOutBack:function(f,b,c,d,e,a){if(a==undefined)a=1.70158;return d*((b=b/e-1)*b*((a+1)*b+a)+1)+c},easeInOutBack:function(f,a,c,d,e,b){if(b==undefined)b=1.70158;return(a/=e/2)<1?d/2*a*a*(((b*=1.525)+1)*a-b)+c:d/2*((a-=2)*a*(((b*=1.525)+1)*a+b)+2)+c},easeInBounce:function(e,d,c,a,b){return a-jQuery.easing.easeOutBounce(e,b-d,0,a,b)+c},easeOutBounce:function(e,a,b,c,d){return(a/=d)<1/2.75?c*7.5625*a*a+b:a<2/2.75?c*(7.5625*(a-=1.5/2.75)*a+.75)+b:a<2.5/2.75?c*(7.5625*(a-=2.25/2.75)*a+.9375)+b:c*(7.5625*(a-=2.625/2.75)*a+.984375)+b},easeInOutBounce:function(e,c,d,b,a){return c<a/2?jQuery.easing.easeInBounce(e,c*2,0,b,a)*.5+d:jQuery.easing.easeOutBounce(e,c*2-a,0,b,a)*.5+b*.5+d}});
// url plugin
function URLEncode(a){var d="",b=0;a=a.toString();var g=/(^[a-zA-Z0-9_.]*)/;while(b<a.length){var c=g.exec(a.substr(b));if(c!=null&&c.length>1&&c[1]!=""){d+=c[1];b+=c[1].length}else{if(a[b]==" ")d+="+";else{var f=a.charCodeAt(b),e=f.toString(16);d+="%"+(e.length<2?"0":"")+e.toUpperCase()}b++}}return d}jQuery.url=function(){function b(c){for(var d="",a=0,b=0,e=0;a<c.length;){b=c.charCodeAt(a);if(b<128){d+=String.fromCharCode(b);a++}else if(b>191&&b<224){e=c.charCodeAt(a+1);d+=String.fromCharCode((b&31)<<6|e&63);a+=2}else{e=c.charCodeAt(a+1);c3=c.charCodeAt(a+2);d+=String.fromCharCode((b&15)<<12|(e&63)<<6|c3&63);a+=3}}return d}function c(e,c){var b={},d={"true":true,"false":false,"null":null};$.each(e.replace(/\+/g," ").split("&"),function(g,j){var e=j.split("=");g=a(e[0]);j=b;var i=0,f=g.split("]["),h=f.length-1;if(/\[/.test(f[0])&&/\]$/.test(f[h])){f[h]=f[h].replace(/\]$/,"");f=f.shift().split("[").concat(f);h=f.length-1}else h=0;if(e.length===2){e=a(e[1]);if(c)e=e&&!isNaN(e)?+e:e==="undefined"?undefined:d[e]!==undefined?d[e]:e;if(h)for(;i<=h;i++){g=f[i]===""?j.length:f[i];j=j[g]=i<h?j[g]||(f[i+1]&&isNaN(f[i+1])?{}:[]):e}else if($.isArray(b[g]))b[g].push(e);else b[g]=b[g]!==undefined?[b[g],e]:e}else if(g)b[g]=c?undefined:""});return b}function d(a){a=a||window.location;var e=["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"];a=/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/.exec(a);for(var b={},d=e.length;d--;)b[e[d]]=a[d]||"";if(b.query)b.params=c(b.query,true);return b}function e(a){if(a.source)return encodeURI(a.source);var b=[];if(a.protocol)if(a.protocol=="file")b.push("file:///");else a.protocol=="mailto"?b.push("mailto:"):b.push(a.protocol+"://");if(a.authority)b.push(a.authority);else{if(a.userInfo)b.push(a.userInfo+"@");else if(a.user){b.push(a.user);a.password&&b.push(":"+a.password);b.push("@")}if(a.host){b.push(a.host);a.port&&b.push(":"+a.port)}}if(a.path)b.push(a.path);else{a.directory&&b.push(a.directory);a.file&&b.push(a.file)}if(a.query)b.push("?"+a.query);else a.params&&b.push("?"+$.param(a.params));a.anchor&&b.push("#"+a.anchor);return b.join("")}function f(a){return encodeURIComponent(a)}function a(a){a=a||window.location.toString();return b(unescape(a.replace(/\+/g," ")))}return{encode:f,decode:a,parse:d,build:e}}();
// sort plugin
jQuery.fn.sort=function(){var a=[].sort;return function(c,b){b=b||function(){return this};var d=this.map(function(){var d=b.call(this),a=d.parentNode,c=a.insertBefore(document.createTextNode(""),d.nextSibling);return function(){if(a===this)throw new Error("You can't sort elements if any one is a descendant of another.");a.insertBefore(this,c);a.removeChild(c)}});return a.call(this,c).each(function(a){d[a].call(b.call(this))})}}();
//jNice plugin
(function(a){a.fn.jNice=function(){var d=this,g=a.browser.safari;a(document).mousedown(f);return this.each(function(){a("select",this).each(function(a){c(this,a)});a(this).bind("reset",function(){var a=function(){e(this)};window.setTimeout(a,2)});a(".jNiceHidden").css({opacity:0})})};var e=function(b){var c;a(".jNiceSelectWrapper select",b).each(function(){c=this.selectedIndex<0?0:this.selectedIndex;a("ul",a(this).parent()).each(function(){a("a:eq("+c+")",this).click()})});a("a.jNiceCheckbox, a.jNiceRadio",b).removeClass("jNiceChecked");a("input:checkbox, input:radio",b).each(function(){this.checked&&a("a",a(this).parent()).addClass("jNiceChecked")})},h=function(){var c=a(this).addClass("jNiceHidden").wrap('<span class="jRadioWrapper jNiceWrapper"></span>'),d=c.parent(),b=a('<span class="jNiceRadio"></span>');d.prepend(b);b.click(function(){var b=a(this).addClass("jNiceChecked").siblings("input").attr("checked",true);a('input:radio[name="'+b.attr("name")+'"]').not(b).each(function(){a(this).attr("checked",false).siblings(".jNiceRadio").removeClass("jNiceChecked")});return false});c.click(function(){if(this.checked){var b=a(this).siblings(".jNiceRadio").addClass("jNiceChecked").end();a('input:radio[name="'+b.attr("name")+'"]').not(b).each(function(){a(this).attr("checked",false).siblings(".jNiceRadio").removeClass("jNiceChecked")})}}).focus(function(){b.addClass("jNiceFocus")}).blur(function(){b.removeClass("jNiceFocus")});this.checked&&b.addClass("jNiceChecked")},i=function(){var c=a(this).addClass("jNiceHidden").wrap('<span class="jNiceWrapper"></span>'),d=c.parent().append('<span class="jNiceCheckbox"></span>'),b=d.find(".jNiceCheckbox").click(function(){var b=a(this),c=b.siblings("input")[0];if(c.checked===true){c.checked=false;b.removeClass("jNiceChecked")}else{c.checked=true;b.addClass("jNiceChecked")}return false});c.click(function(){if(this.checked)b.addClass("jNiceChecked");else b.removeClass("jNiceChecked")}).focus(function(){b.addClass("jNiceFocus")}).blur(function(){b.removeClass("jNiceFocus")});this.checked&&a(".jNiceCheckbox",d).addClass("jNiceChecked")},j=function(){var b=a(this).addClass("jNiceInput").wrap('<div class="jNiceInputWrapper"><div class="jNiceInputInner"></div></div>'),c=b.parents(".jNiceInputWrapper");b.focus(function(){c.addClass("jNiceInputWrapper_hover")}).blur(function(){c.removeClass("jNiceInputWrapper_hover")})},k=function(){var b=a(this).attr("value");a(this).replaceWith('<button id="'+this.id+'" name="'+this.name+'" type="'+this.type+'" class="'+this.className+'" value="'+b+'"><span><span>'+b+"</span></span>")},b=function(){a(".jNiceSelectWrapper ul:visible").hide()},f=function(c){a(c.target).parents(".jNiceSelectWrapper").length===0&&b()},c=function(g,f){var c=a(g);f=f||c.css("zIndex")*1;f=f?f:0;c.wrap(a('<div class="jNiceWrapper"></div>').css({zIndex:100-f}));var h=c.width();c.addClass("jNiceHidden").after('<div class="jNiceSelectWrapper"><div><span class="jNiceSelectText"></span><span class="jNiceSelectOpen"></span></div><ul></ul></div>');var e=a(g).siblings(".jNiceSelectWrapper").css({width:h+"px"});a(".jNiceSelectText, .jNiceSelectWrapper ul",e).width(h-a(".jNiceSelectOpen",e).width());a.browser.msie&&jQuery.browser.version<7&&c.after(a('<iframe src="javascript:\'\';" marginwidth="0" marginheight="0" align="bottom" scrolling="no" tabIndex="-1" frameborder="0"></iframe>').css({height:c.height()+4+"px",width:c.width()+"px"}));d(g);a("div",e).click(function(){var c=a(this).siblings("ul");c.css("display")=="none"&&b();c.slideToggle();var d=a("a.selected",c).offset().top-c.offset().top;c.css({scrollTop:d});return false});c.keydown(function(d){var b=this.selectedIndex;switch(d.keyCode){case 40:if(b<this.options.length-1)b+=1;break;case 38:if(b>0)b-=1;break;default:return}a("ul a",e).removeClass("selected").eq(b).addClass("selected");a("span:eq(0)",e).html(a("option:eq("+b+")",c).attr("selected","selected").text());return false}).focus(function(){e.addClass("jNiceFocus")}).blur(function(){e.removeClass("jNiceFocus")})},d=function(e){var b=a(e),d=b.siblings(".jNiceSelectWrapper"),c=d.find("ul").find("li").remove().end().hide();a("option",b).each(function(a){c.append('<li><a href="#" index="'+a+'">'+this.text+"</a></li>")});c.find("a").click(function(){a("a.selected",d).removeClass("selected");a(this).addClass("selected");var e=b[0];if(b[0].selectedIndex!=a(this).attr("index")){b[0].selectedIndex=a(this).attr("index");b[0].value=e[a(this).attr("index")].value;b.val(e[a(this).attr("index")].value);b.trigger("change")}b[0].selectedIndex=a(this).attr("index");a("span:eq(0)",d).html(a(this).html());c.hide();return false});a("a:eq("+b[0].selectedIndex+")",c).click()},g=function(b){var c=a(b).siblings(".jNiceSelectWrapper").css("zIndex");a(b).css({zIndex:c}).removeClass("jNiceHidden");a(b).siblings(".jNiceSelectWrapper").remove()};a.jNice={SelectAdd:function(a,b){c(a,b)},SelectRemove:function(a){g(a)},SelectUpdate:function(a){d(a)}};!(a.browser.msie&&jQuery.browser.version<7)&&a(function(){a("form.jNice,#rkdotriform").jNice()})})(jQuery);
// ajax plugin ??
function sack(file){this.AjaxFailedAlert="Your browser does not support the enhanced functionality of this website, and therefore you will have an experience that differs from the intended one.\n";this.requestFile=file;this.method="POST";this.URLString="";this.encodeURIString=true;this.execute=false;this.onLoading=function(){};this.onLoaded=function(){};this.onInteractive=function(){};this.onCompletion=function(){};this.createAJAX=function(){try{this.xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(a){try{this.xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")}catch(b){this.xmlhttp=null}}if(!this.xmlhttp&&typeof XMLHttpRequest!="undefined")this.xmlhttp=new XMLHttpRequest;if(!this.xmlhttp)this.failed=true};this.setVar=function(a,b){if(this.URLString.length<3)this.URLString=a+"="+b;else this.URLString+="&"+a+"="+b};this.encVar=function(a,b){return encodeURIComponent(a)+"="+encodeURIComponent(b)};this.encodeURLString=function(a){varArray=a.split("&");for(i=0;i<varArray.length;i++){urlVars=varArray[i].split("=");if(urlVars[0].indexOf("amp;")!=-1)urlVars[0]=urlVars[0].substring(4);varArray[i]=this.encVar(urlVars[0],urlVars[1])}return varArray.join("&")};this.runResponse=function(){eval(this.response)};this.runAJAX=function(b){this.responseStatus=new Array(2);if(this.failed&&this.AjaxFailedAlert)alert(this.AjaxFailedAlert);else{if(b)if(this.URLString.length)this.URLString=this.URLString+"&"+b;else this.URLString=b;if(this.encodeURIString){var c=+new Date;this.URLString=this.encodeURLString(this.URLString);this.setVar("rndval",c)}if(this.element)this.elementObj=document.getElementById(this.element);if(this.xmlhttp){var a=this;if(this.method=="GET"){var d=this.requestFile+"?"+this.URLString;this.xmlhttp.open(this.method,d,true)}else this.xmlhttp.open(this.method,this.requestFile,true);if(this.method=="POST")try{this.xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded")}catch(e){}this.xmlhttp.send(this.URLString);this.xmlhttp.onreadystatechange=function(){switch(a.xmlhttp.readyState){case 1:a.onLoading();break;case 2:a.onLoaded();break;case 3:a.onInteractive();break;case 4:a.response=a.xmlhttp.responseText;a.responseXML=a.xmlhttp.responseXML;a.responseStatus[0]=a.xmlhttp.status;a.responseStatus[1]=a.xmlhttp.statusText;a.onCompletion();a.execute&&a.runResponse();if(a.elementObj){var b=a.elementObj.nodeName;b.toLowerCase();if(b=="input"||b=="select"||b=="option"||b=="textarea")a.elementObj.value=a.response;else a.elementObj.innerHTML=a.response}a.URLString=""}}}}};this.createAJAX()}
// controls check lib pour KDO
function affiche_caddie(c){var a=getHTTPObject(),b=document.getElementById(c);b.innerHTML="";var d=new Date;a.open("GET","/v2/includes/common/caddie.asp?"+d.getTime(),true);vider_cache(a);a.onreadystatechange=function(){if(a.readyState==4&&a.status==200){var c=a.responseText;if(c.indexOf("boiteNavGauche")>=0){b.style.display="block";b.innerHTML=c}else b.style.display="none"}};a.send(null)}function createCookie(e,d,c){var b="";if(c){var a=new Date;a.setTime(a.getTime()+c*864e5);b="; expires="+a.toGMTString()}document.cookie=e+"="+d+b+"; path=/"}function readCookie(e){for(var c=e+"=",d=document.cookie.split(";"),b=0;b<d.length;b++){var a=d[b];while(a.charAt(0)==" ")a=a.substring(1,a.length);if(a.indexOf(c)==0)return a.substring(c.length,a.length)}return null}function eraseCookie(a){createCookie(a,"",-1)}function affiche_tab(b){for(var c="",a=0,a=0;a<b.length;a++)c+=b[a][0]+" : "+b[a][1]+"\n";return c}(function(a){a.fn.SortTab=function(b){var f={filtre_sort:"span.fcontent",inverse:true,spanup:"<span class='up'>&nbsp;(asc)</span>",spandown:"<span class='down'>&nbsp;(desc)</span>",SelectorSpanSort:"span.up, span.down",classActive:"active",SelectorParent:"table",SelectorColumns:"td",SelectorSort:"th.sort"};b=a.extend(f,b);var c=true;c=b.inverse;var g=a(this).find(b.SelectorSort);g.click(function(){return d(this)});function d(d){var f=a(d),g=f.index();f.closest(b.SelectorParent).find(b.SelectorColumns).filter(function(){return jQuery(this).index()===g}).sort(e,function(){return this.parentNode});jQuery(d).parent().find(b.SelectorSort).removeClass(b.classActive).find(b.SelectorSpanSort).remove();jQuery(d).addClass(b.classActive);if(c)jQuery(d).append(b.spanup);else jQuery(d).append(b.spandown);c=!c}function e(a,d){x=jQuery(a).find(b.filtre_sort).text();y=jQuery(d).find(b.filtre_sort).text();if(!isNaN(x)&&x!=null&&!isNaN(y)&&y!=null)if(!isNaN(parseInt(x,10))&&!isNaN(parseInt(y,10))){x=parseInt(x,10);y=parseInt(y,10);v=c?x==y?0:x>y?1:-1:x==y?0:x<y?1:-1;return v}v=c?isNaN(x)||isNaN(y)?x>y:+x>+y:isNaN(x)||isNaN(y)?x<y:+x<+y;return v}return this}})(jQuery);function do_afficher_div(d,c,b){var a="#"+d.replace(/,/g,", #");if(c==null)if(jQuery(a).hasClass("nonvisible"))c=true;else c=false;if(c){jQuery(a).hasClass("nonvisible")&&jQuery(a).removeClass("nonvisible");jQuery(a).hasClass("visible")&&jQuery(a).removeClass("visible");if(b>0)jQuery(a).fadeIn(b,function(){jQuery(this).addClass("visible")});else jQuery(a).addClass("visible")}else{jQuery(a).hasClass("visible")&&jQuery(a).removeClass("visible");jQuery(a).hasClass("nonvisible")&&jQuery(a).removeClass("nonvisible");if(b>0)jQuery(a).fadeOut(b,function(){jQuery(this).addClass("nonvisible")});else jQuery(a).addClass("nonvisible")}return null}function Addlog(a,b){jQuery("#"+a).append("<br><span>"+b+"<span>")}function OuvrirPopUp(a,c,b){if(typeof fpopup=="undefined")fpopup=window.open(a,c,b);else try{fpopup.location=a;fpopup.focus()}catch(d){fpopup=window.open(a,c,b)}}function wait(a){d=new Date;for(;;){n=new Date;diff=n-d;if(diff>a)break}}jQuery(document).ready(function(){jQuery("#dvgotop").click(function(){var a="html,body";if(jQuery.browser.msie&&jQuery.browser.version<=7)a="html";jQuery(a).animate({scrollTop:"1px"},"slow",function(){document.documentElement.scrollTop=1});return true});jQuery(window).scroll(function(){if(isScrolledIntoView("#rkdoresultatsfiches",200)){var a=jQuery(window).width(),b=jQuery(window).scrollTop()+jQuery(window).height()-73;if(jQuery(".kdocolonnegaucheaccueil").offset()!=null)a=jQuery(".kdocolonnegaucheaccueil").offset().left+jQuery(".kdocolonnegaucheaccueil").width()+12;else if(jQuery(".kdounecolonnegauche").offset()!=null)a=jQuery(".kdounecolonnegauche").offset().left+jQuery(".kdounecolonnegauche").width()+12;else if(jQuery(".kdocolonnegauche").offset()!=null)a=jQuery(".kdocolonnegauche").offset().left+jQuery(".kdocolonnegauche").width()+12;if(a+73>jQuery(window).width())a-=73;else a+=10;jQuery("#dvgotop").stop().css({left:a+"px",top:b+"px"});do_afficher_div("dvgotop",true,0)}else do_afficher_div("dvgotop",false,0)})});function isScrolledIntoView(b,a){var c=jQuery(window).scrollTop();if(jQuery(b).attr("id")!=undefined&&jQuery(b).offset()!=null)a=jQuery(b).offset().top;return c+""==null||a+""==null?false:a<=c}function isnull(a,b){return a==null||a==undefined||a+""==""?b:a}function GetUrlJS(b){var a="javascript:void selflink(";if(b=="")return a=a+");";var c="";c=b;if(b.substring(0,0)!="/")c="/"+b;var d=c.replace(/[/]/g,"|"),e=d.length/2;for(i=1;i<=e*2;i=i+2){a=a+"'"+d.substring(i,i+2).replace(/\'/,"'")+"'";if(i<e*2-1)a=a+","}a=a+");";return a}function pause(b){var c=new Date,a=null;do a=new Date;while(a-c<b)}function nbwith(a,b){return a>1?b:""}function matchfiltreproduit(b,c){var d=0;nbelmp=0;var a=0;if(b.indexOf("1")<0)return true;for(a=0;a<b.length;a++){if(b.substr(a,1)=="1")d++;if(b.substr(a,1)=="1"&&c.substr(a,1)=="1")nbelmp++}return nbelmp>0?true:false}function replaceindx(b,d,c){var a="",e=b.length-1;if(c==0){a+=d;a+=b.substring(1)}else if(c==e){a+=b.substr(0,e);a+=d}else{a+=b.substr(0,c);a+=d;a+=b.substring(c+1)}return a}function tri_nombres(c,d){var a=c[1],b=d[1];return a==b?0:a<b?-1:1}function kdo_tri(a,b){a=parseInt(jQuery(a).text(),10);b=parseInt(jQuery(b).text(),10);return a==b?0:a<b?-1:1}function GetNoteImage(h,b,d,g,e,f){if(b+""=="")return"";else{if(b>50)b=50;if(b<0)b=0;var c=" avis clients";if(d+""==""||d+""=="0")c="";else if(d==1)c="et 1 avis client";else c="et "+d+" avis clients";var a="";if(h==0)a=e;else a=f;a=a.replace(/%note_produit%/g,(b/10+"").replace(/\./g,","));a=a.replace(/%nbavis_produit%/g,c);a=a.replace(/%urljs_produit%/g,g);if(b-Math.floor(b/10)*10>=5)a=a.replace(/%note_arrondie%/g,Math.floor(b/10)+".5");else a=a.replace(/%note_arrondie%/g,Math.floor(b/10)+".0");return a}}function kdoget(a){return jQuery("#"+a)}function kdoischecked(a){return kdoget(a).attr("checked")=="checked"}function kdosetchecked(a,b){if(b)kdoget(a).attr("checked","checked");else kdoget(a).attr("checked","");return kdoget(a)}function kdogetval(a){return kdoget(a).val()}function kdosetval(b,a){return kdoget(b).val(a)}function kdosethtml(b,a){return kdoget(b).html(a)}function kdogethtml(a){return kdoget(a).html()}function kdosetdiv(b,a){do_afficher_div(b,a,0)}function kdosettext(b,a){return kdoget(b).text(a)}function kdogettext(a){return kdoget(a).text()}function kdochkinputsempty(f,c){for(var a=true,e=f+"\n",b=0,b=0;b<c.length;b++){var d=kdochkinputtest(c[b].id,true,"");a=a&&d;if(!d)e+="\n"+c[b].lblalert}!a&&alert(e);return a}function kdochkinputempty(a,b){return kdochkinput(a,true,"",b)}function kdochkinput(b,c,d,a){if(!kdochkinputtest(b,c,d,a)){alert(a);return false}return true}function kdochkinputtest(a,b,c){return kdogetval(a)==c&&b||kdogetval(a)!=c&&!b?false:true}var kdoflvprevisu={divid:"kdofp_previsu",flashid:"previsu",width:330,height:264,bgcolor:"#fff",border:"1px solid #B0B0B0",bgflv:"#efefef",version:"8",debug:false,flashparams:[{key:"wmode",val:"opaque"}],flashpath:"/images/boutique/previsualisation_flash/produit-%flv_produit%.swf",flashvars:[]};function kdoprintflv(){for(var b="Flash Params :\n",c=new FlashObject(kdoflvprevisu.flashpath,kdoflvprevisu.flashid,kdoflvprevisu.width,kdoflvprevisu.height,kdoflvprevisu.version,kdoflvprevisu.bgflv),a=0;a<kdoflvprevisu.flashparams.length;a++){c.addParam(kdoflvprevisu.flashparams[a].key,kdoflvprevisu.flashparams[a].val);b+=kdoflvprevisu.flashparams[a].key+" : "+kdoflvprevisu.flashparams[a].val+"\n"}b+="Flash Vars :\n";for(var a=0;a<kdoflvprevisu.flashvars.length;a++){c.addVariable(kdoflvprevisu.flashvars[a].key,kdoflvprevisu.flashvars[a].val);b+=kdoflvprevisu.flashvars[a].key+" : "+kdoflvprevisu.flashvars[a].val+"\n"}kdoflvprevisu.debug&&alert(b);c.write(kdoflvprevisu.divid)}jQuery(document).ready(function(){var a="";jQuery(".valfocus").focus(function(){a=jQuery(this).val();jQuery(this).val("")}).blur(function(){jQuery(this).val()==""&&jQuery(this).val(a)})});


