function jqModalShow(A){A.w.show();
var B=A.w.offset();
A.w.css({"left":B.left,"top":B.top,"position":"absolute","margin":"0"})
}function jqModalHide(A){A.w.hide().css({"left":"","top":"","position":"","margin":""});
A.o.remove()
}function getCenterImagePadding(D,A,I){var G=I||{h:0,w:0};
var H=2;
var C=5;
D=D||{};
A=A||{};
var E=D.parent();
if(E){var F=E.css("height");
F=pxToInt(F)-G.h;
H=getAvrg(F,A.height);
var B=E.css("width");
B=pxToInt(B)-G.w;
C=getAvrg(B,A.width)
}return{"paddingLeft":C,"paddingTop":H}
}function getAvrg(B,A){return Math.floor(Math.abs(B-A)/2)
}function pxToInt(A){if(A==""||!A||A=="undefined"){return 0
}A=A.match(/(\d+)/i);
if(A){return parseInt(A[0])
}return 0
}function delegate(B,A){return function(){return A.apply(B,arguments)
}
}function abbreviateString(B,A){B=B+"";
if(B.length>A){return B.substr(0,A-1)+" \u2026"
}return B
}function refreshCapture(B,A){document.getElementById(B).src=A+"?v="+Math.random();
return false
}function initializeFieldHighlight(){if($.browser.msie){$("input:text").focus(function(){$(this).addClass("iefocus")
}).blur(function(){$(this).removeClass("iefocus")
});
$("textarea").focus(function(){$(this).addClass("iefocus")
}).blur(function(){$(this).removeClass("iefocus")
})
}}function focusSearchInput(){if($(".search-text").val()==$(".search-placeholder").text()){$(".search-text").val("")
}$(".search-text").addClass("search-text-focus");
$(".search-box").addClass("focus")
}function blurSearchInput(){var A=$(".search-text");
if(A.size()==0){return 
}if(A.val().replace(/^\s*/,"").replace(/\s*$/,"").length==0){A.val($(".search-placeholder").text())
}A.removeClass("search-text-focus");
$(".search-box").removeClass("focus")
}function clearSearchBox(){if($(".search-text").val()==$(".search-placeholder").text()){$(".search-text").val("")
}}function initializeDatePicker(){var A=document.getElementById("datepicker-format");
$.datepicker.setDefaults({showOn:"button",buttonImage:$("img",A).attr("src"),buttonImageOnly:true,dateFormat:$("span",A).text()})
}function attacheDatePicker(){$(".date-field").datepicker()
}function showProviderFilledStatus(A){var B=document.getElementById("profile_skills_tab");
if(A.skillSectionFilled){$(B).removeClass("not-filled-section").addClass("filled-section")
}else{$(B).removeClass("filled-section").addClass("not-filled-section")
}var C=document.getElementById("profile_skills_link");
if(A.skillFilled){$(C).hide()
}else{$(C).show()
}C=document.getElementById("profile_languages_link");
if(A.spokenLanguageFilled){$(C).hide()
}else{$(C).show()
}B=document.getElementById("profile_licenses_tab");
C=document.getElementById("profile_licenses_link");
if(A.licenseSectionFilled){$(B).removeClass("not-filled-section").addClass("filled-section");
$(C).hide()
}else{$(B).removeClass("filled-section").addClass("not-filled-section");
$(C).show()
}B=document.getElementById("profile_portfolio_tab");
C=document.getElementById("profile_portfolio_link");
if(A.portfolioFilled){$(B).removeClass("not-filled-section").addClass("filled-section");
$(C).hide()
}else{$(B).removeClass("filled-section").addClass("not-filled-section");
$(C).show()
}B=document.getElementById("profile_please_enter");
if(A.percentage>99){$(B).hide();
$("#profile_filled").show();
$("#profile_not_filled").hide()
}else{$(B).show();
$("#profile_filled").hide();
$("#profile_not_filled").show()
}$(".profile-progress .progress-bar .title .percents").text(A.percentage+"%");
$("#profile-page div.progress-bar div.filled-segment").animate({width:A.percentage+"%"},500)
}function showCustomerFilledStatus(A){var B=document.getElementById("profile_general_tab");
var C=document.getElementById("profile_languages_link");
if(A.spokenLanguageFilled){$(B).removeClass("not-filled-section").addClass("filled-section");
$(C).hide()
}else{$(B).removeClass("filled-section").addClass("not-filled-section");
$(C).show()
}B=document.getElementById("profile_interests_tab");
C=document.getElementById("profile_interests_link");
if(A.interestsFilled){$(B).removeClass("not-filled-section").addClass("filled-section");
$(C).hide()
}else{$(B).removeClass("filled-section").addClass("not-filled-section");
$(C).show()
}B=document.getElementById("profile_please_enter");
if(A.percentage>99){$(B).hide();
$("#profile_filled").show();
$("#profile_not_filled").hide()
}else{$(B).show();
$("#profile_filled").hide();
$("#profile_not_filled").show()
}$(".profile-progress .progress-bar .title .percents").text(A.percentage+"%");
$("#profile-page div.progress-bar div.filled-segment").animate({width:A.percentage+"%"},500)
}function submitFormByLink(D,A){if(D.tagName!="A"){D=D.parentNode
}var C=$(D).parents("form");
if(!C.isSFSInProcess()){$(".event-handler-name",C).remove();
$(".additional-form-parameter",C).remove();
C.append('<input type="hidden" class="event-handler-name" name="'+D.name+'" value="" />');
if(A){for(var B=0;
B<A.length;
B++){C.append('<input type="hidden" class="additional-form-parameter" name="'+A[B].name+'" value="'+A[B].value+'" />')
}}C.submit()
}}function initializeSubmitter(A){$("form .submit",A).click(function(B){B.preventDefault();
submitFormByLink(B.target)
})
}function initializeRadioButton(){$(".checked").attr("checked","checked")
}function addRelAttrToJobDescLinks(){$(".job-description a").attr("rel","nofollow")
}DATE_DIFF_FIELDS=[{divider:1000,fieldName:"second"},{divider:60000,fieldName:"minute"},{divider:3600000,fieldName:"hour"},{divider:86400000,fieldName:"day"},{divider:604800000,fieldName:"week"},{divider:2592000000,fieldName:"month"},{divider:31536000000,fieldName:"year"}];
function formatDateDiff(A,E){var D=E.getTime()-A.getTime();
var C=DATE_DIFF_FIELDS.length-1;
while(C>0&&DATE_DIFF_FIELDS[C].divider>D){C--
}D=Math.floor(D/DATE_DIFF_FIELDS[C].divider);
var B=$("#pattern_date_"+DATE_DIFF_FIELDS[C].fieldName+(D==1?"_ago":"s_ago")).text();
return B.replace("{0}",D)
}function targetBlank(A){A.preventDefault();
window.open(A.target.href)
}function limitChars(E,D,A){var F=$(E);
if(F.hasClass("empty-field")){return 
}var C=F.val();
var B=C.replace(/\n/g,"\n\r").length;
if(B>A){C=C.replace(/\n/g,"\n\r");
C=C.substr(0,A);
F.val(C.replace(/\n\r/g,"\n"));
$(D).html(0);
$(D).parent().css("color","red");
return false
}else{if($(D).parent().css("color")=="red"){$(D).parent().css("color","gray")
}$(D).html(A-B);
if(A-B==0){$(D).parent().css("color","red")
}return true
}}function repairLink2Anchor(){if($("base").length){var A=/^#([\w-_]+)$/;
$("a[href]").each(function(){var C=$(this);
var B=C.attr("href");
if(A.test(B)){B=B.substr(1);
C.click(function(D){document.location.hash=B;
D.preventDefault()
})
}})
}}(function(A){A.fn.styleFileUpload=function(){return this.each(function(){var D=A(this).parent("form");
var C=D.find("a.file-upload-button");
var B=D.find("input.file-upload-button-hide");
C.click(function(E){E.preventDefault();
B.click()
});
B.bind(A.browser.msie?"propertychange":"change",function(E){E.preventDefault();
D.append('<input type="hidden" name="'+C.attr("name")+'" value="" />').submit()
})
})
}
})(jQuery);
function centerImage(H,D,G){var C=document.images[D];
if(C&&C.width>0&&C.height>0){var F=H.parent("div");
var A=C.width;
var E=C.height;
var B=getCenterImagePadding(F,C,G);
F.css("width",A+"px");
F.css("height",E+"px");
F.css("padding-top",B.paddingTop+"px");
F.css("padding-left",B.paddingLeft+"px")
}}(function(A){A.fn.centerProfileImage=function(){return this.each(function(){var C=A(this);
C.removeClass("center-profile-image");
var B=C.css("font-size");
B=pxToInt(B);
if(B==0){alert("Font-size photo(logo) can't be 0!")
}C.bind("load",function(D){var F=A(D.target);
var E=F.attr("name");
if(!E||E==""){return 
}centerImage(F,E,{h:B,w:0})
})
})
};
A.fn.centerImage=function(){return this.each(function(){var B=A(this);
B.removeClass("center-image");
B.bind("load",function(C){var E=A(C.target);
var D=E.attr("name");
if(!D||D==""){return 
}centerImage(E,D,{h:0,w:0})
})
})
};
A.fn.forceLoadImage=function(){return this.each(function(){var D=A(this);
D.removeClass("force-load-image");
var E=D.attr("src");
if(E==""||!E){return 
}var B=new Image();
B.src=E;
var C=D.attr("name");
if(!C||C==""){return 
}document.images[C].src=B.src
})
};
A.fn.attachFormButton=function(){return this.each(function(){var B=A(this);
var C=B.parent("div");
if(C){if(B.hasClass("attach-left")){B.removeClass("attach-left");
C.css("padding-left","0px");
B.css("float","left")
}else{if(B.hasClass("attach-right")){B.removeClass("attach-right");
B.css("float","right");
C.css("padding-right","0px")
}}}})
}
})(jQuery);
(function(A){function C(D){var E=[];
D.each(function(F,G){E.push(A(G).height())
});
return E
}function B(E,D){E.each(function(F,G){if(F<D.length){A(G).css("height",D[F]+"px").css("overflow","")
}})
}A.fn.alignColumnByHeight=function(){return this.each(function(){var F=A(".left-column .editable-section .editable-section-interrior",this);
var E=C(F);
var I=A(".right-column .editable-section .editable-section-interrior",this);
var D=C(I);
var H=E.length<D.length?E.length:D.length;
var J=[];
for(var G=0;
G<H;
G++){if(D[G]>E[2]){J.push(D[G])
}else{J.push(E[G])
}}B(F,J);
B(I,J)
})
}
})(jQuery);
(function(A){A.fn.clearInput=function(){return this.each(function(){var C=A(this);
var B=C.attr("title");
if(B==null||B==""){return 
}C.focus(function(){if(C.hasClass("empty-field")){C.removeClass("empty-field");
C.val("")
}});
C.blur(function(){if(C.val()==""){C.val(B);
C.addClass("empty-field")
}});
C.change(function(){C.removeClass("empty-field")
});
C.blur()
})
};
A.fn.clearForm=function(){return this.each(function(){var B=A(this);
B.submit(function(){A(".empty-field",this).val("")
})
})
}
})(jQuery);
(function(A){A.fn.singleFormSubmit=function(){return this.submit(function(B){var C=A(this);
if(C.isSFSInProcess()){B.preventDefault();
return false
}else{C.sartSFSProcess()
}})
};
A.fn.isSFSInProcess=function(){return this.hasClass("form-submit-inprocess")
};
A.fn.sartSFSProcess=function(){return this.addClass("form-submit-inprocess")
};
A.fn.stopSFSProcess=function(){return this.removeClass("form-submit-inprocess")
}
})(jQuery);
(function(C){function B(){var E=C("label",this);
var F=C(".field-hint",this);
var D=E.outerWidth()-1;
F.css("left",D).css("width",239-D).show()
}function A(){C(".field-hint",this).hide()
}C.fn.fieldHint=function(){return this.hover(B,A)
}
})(jQuery);
(function(A){A.fn.styleSelect=function(){return this.each(function(){if(A.browser.msie&&A.browser.version<=7.5){return 
}var G=A(this);
G.removeClass("styled");
var F=document.createElement("DIV");
A(F).addClass("selector");
if(G.hasClass("error")){A(F).addClass("error")
}G.wrap(F);
var E=document.createElement("SPAN");
G.before(E);
var B=A(E);
B.wrap("<div></div>");
B.text(G.find(":selected").text());
var C=function(){B.text(G.find(":selected").text())
};
G.change(C).keyup(C);
var D=function(){if(G.attr("disabled")){G.parent(".selector").addClass("disabled")
}else{G.parent(".selector").removeClass("disabled")
}};
G.bind("custom-event-disabled",D);
G.bind("custom-event-enabled",D);
D()
})
};
A.fn.styleSelectWithWidth=function(){return this.each(function(){var E=A(this);
E.removeClass("styled");
var D=document.createElement("DIV");
A(D).addClass("selector");
E.wrap(D);
var C=document.createElement("SPAN");
E.before(C);
var B=A(C);
A(this).alignSelectWidth();
B.wrap("<div></div>");
B.text(E.find(":selected").text());
E.change(function(){B.text(E.find(":selected").text())
})
})
};
A.fn.styleInput=function(){return this.each(function(){var G=A(this);
G.removeClass("styled");
var E=G.attr("type");
var B="checker";
if(E=="radio"){B="radio-button"
}G.wrap('<div class="'+B+'"><span></span></div>');
var D=G.parent("span");
if(G.attr("checked")){D.addClass("checked")
}var F=function(){if(G.attr("checked")){if(E=="radio"){A("."+B+' span.checked:has([name="'+G.attr("name")+'"])').removeClass("checked")
}D.addClass("checked")
}else{D.removeClass("checked")
}};
G.change(F);
if(A.browser.msie){G.bind("propertychange",F)
}var C=function(){if(G.attr("disabled")){G.parent().parent("."+B).addClass("disabled")
}else{G.parent().parent("."+B).removeClass("disabled")
}};
G.bind("custom-event-disabled",C);
G.bind("custom-event-enabled",C);
C()
})
};
A.fn.alignSelectWidth=function(){return this.each(function(){var F=A(this);
F.removeClass("align-selector-width");
var B=F.css("width");
if(B!==""){B=pxToInt(B);
var D=F.parent("div.selector");
var C=A(D,"div span");
var E=C.css("padding-right");
if(E==""){E="0px"
}E=pxToInt(E);
B+=E;
C.css("width",B+"px")
}})
}
})(jQuery);
(function(A){A.fn.disableElement=function(){return this.each(function(){A(this).attr("disabled","disabled").trigger("custom-event-disabled")
})
};
A.fn.enableElement=function(){return this.each(function(){A(this).removeAttr("disabled","disabled").trigger("custom-event-enabled")
})
}
})(jQuery);
(function(A){A.fn.extend({center:function(){return this.each(function(){var C=(A(window).height()-A(this).outerHeight())/2;
var B=(A(window).width()-A(this).outerWidth())/2;
A(this).css({position:"absolute",margin:0,top:(C>0?C:0)+"px",left:(B>0?B:0)+"px"})
})
}})
})(jQuery);
(function(A){A.fn.squeeze=function(){return this.each(function(){var B=A(this);
var C=B.html();
if(C){C=C.replace(/,&nbsp;/g,", ");
B.html(C)
}})
}
})(jQuery);
$(document).ready(function(){$("form.form").clearForm();
$("form.form input.text").clearInput();
$("form.form textarea.text").clearInput();
$("select.styled").styleSelect();
$("input.styled").styleInput();
$("select.align-selector-width").alignSelectWidth();
$("img.force-load-image").forceLoadImage();
$("img.center-profile-image").centerProfileImage();
$("img.center-image").centerImage();
$("form input.file-upload-button-hide").styleFileUpload();
$("div.form-buttons .attach-left").attachFormButton();
$("div.form-buttons .attach-right").attachFormButton();
$("div.align-column-height").alignColumnByHeight();
$(".target_blank").click(targetBlank);
$(".hint-label").fieldHint();
blurSearchInput();
$(".search-text").focus(focusSearchInput).blur(blurSearchInput);
$(".header-content .search .search-button").click(clearSearchBox);
initializeFieldHighlight();
initializeDatePicker();
attacheDatePicker();
initializeSubmitter(document.getElementById("main-content"));
initializeRadioButton();
addRelAttrToJobDescLinks();
repairLink2Anchor();
$().ajaxSuccess(function(E,D,C){if(D.responseText=='{"result":"error","sessionExpired":true}'){var F="Sorry, your session has expired.";
var B=document.getElementById("ajax-config");
if(B!=null){F=$("span",B).text()
}C.complete=false;
alert(F);
window.location.reload(true)
}});
$(".feedbackRedirectTrigger").click(function(D){var B=$("title").html();
B=B.replace(/&nbsp;/g," ");
var C=D.target.href;
if(D.target.tagName!="A"){C=D.target.parentNode.href
}window.location=C+"/"+B;
D.preventDefault()
});
$("#navlist li #subnavlist li a").click(function(C){C.preventDefault();
var B=C.target.href;
if(C.target.tagName!="A"){B=C.target.parentNode.href
}if(B.indexOf("?")!=-1){B+="&"
}else{B+="?"
}window.location=B+$.param({"url":window.location.pathname+window.location.search,"changeLocale":""})
});
var A=$("span.after-name-verification-icon");
if(A.size()>0){A.tooltip()
}var A=$("span.nda-icon-container");
if(A.size()>0){A.tooltip()
}});
function objToStr(E){if(!E){return"{}"
}var B="{";
var C=0;
for(var A in E){if(C>0){B+=","
}try{B+="'"+A+"':"+E[A];
++C
}catch(D){}}B+="}";
return B
}(function($){$.fn.findandfilter=function(selector){var ret=this.filter(selector).add(this.find(selector));
ret.prevObject=ret.prevObject.prevObject;
return ret
};
$.fn.parsecssfile=function(file,callback){$.get(file,"text",function(HTMLtext){$.parsecss(HTMLtext,callback)
})
};
$.fn.parsecssstr=function(str,callback){$.parsecss(str,callback)
};
$.fn.parsecss=function(callback,parseAttributes){var parse=function(str){$.parsecss(str,callback)
};
this.findandfilter("style").each(function(){parse(this.innerHTML)
}).end().findandfilter('link[type="text/css"]').each(function(){if(!this.disabled&&!/^\w+:/.test($(this).attr("href"))&&$.parsecss.mediumApplies(this.media)){$.get(this.href,parse)
}}).end();
if(parseAttributes){$.get(location.pathname+location.search,"text",function(HTMLtext){styleAttributes(HTMLtext,callback)
})
}return this
};
$.parsecss=function(str,callback){var ret={};
str=munge(str).replace(/@(([^;`]|`[^b]|`b[^%])*(`b%)?);?/g,function(s,rule){processAtRule($.trim(rule),callback);
return""
});
$.each(str.split("`b%"),function(i,css){css=css.split("%b`");
if(css.length<2){return 
}css[0]=restore(css[0]);
ret[css[0]]=$.extend(ret[css[0]]||{},parsedeclarations(css[1]))
});
callback(ret)
};
$.parsecss.mediumApplies=(window.media&&window.media.query)||function(str){if(!str){return true
}if(str in media){return media[str]
}var style=$('<style media="'+str+'">body {position: relative; z-index: 1;}</style>').appendTo("head");
return media[str]=[$("body").css("z-index")==1,style.remove()][0]
};
$.parsecss.isValidSelector=function(str){var s=$("<style>"+str+"{}</style>").appendTo("head")[0];
return[s.styleSheet?!/UNKNOWN/i.test(s.styleSheet.cssText):!!s.sheet.cssRules.length,$(s).remove()][0]
};
$.parsecss.parseArguments=function(str){if(!str){return[]
}var ret=[],mungedArguments=munge(str,true).split(/\s+/);
for(var i=0;
i<mungedArguments.length;
++i){var a=restore(mungedArguments[i]);
try{ret.push(eval("("+a+")"))
}catch(err){ret.push(a)
}}return ret
};
$.parsecss.jquery=function(css){for(var selector in css){for(var property in css[selector]){var match=/^-jquery(-(.*))?/.exec(property);
if(!match){continue
}var value=munge(css[selector][property]).split("!");
var which=match[2];
dojQuery(selector,which,restore(value[0]),restore(value[1]))
}}};
$.parsecss.styleAttributes=styleAttributes;
var media={};
var munged={};
function parsedeclarations(index){var str=munged[index].replace(/^{|}$/g,"");
str=munge(str);
var parsed={};
$.each(str.split(";"),function(i,decl){decl=decl.split(":");
if(decl.length<2){return 
}parsed[restore(decl[0])]=restore(decl.slice(1).join(":"))
});
return parsed
}var REbraces=/{[^{}]*}/;
var REfull=/\[[^\[\]]*\]|{[^{}]*}|\([^()]*\)|function(\s+\w+)?(\s*%b`\d+`b%){2}/;
var REatcomment=/\/\*@((?:[^\*]|\*[^\/])*)\*\//g;
var REcomment_string=/(?:\/\*(?:[^\*]|\*[^\/])*\*\/)|(\\.|"(?:[^\\\"]|\\.|\\\n)*"|'(?:[^\\\']|\\.|\\\n)*')/g;
var REmunged=/%\w`(\d+)`\w%/;
var uid=0;
function munge(str,full){str=str.replace(REatcomment,"$1").replace(REcomment_string,function(s,string){if(!string){return""
}var replacement="%s`"+(++uid)+"`s%";
munged[uid]=string.replace(/^\\/,"");
return replacement
});
var RE=full?REfull:REbraces;
while(match=RE.exec(str)){replacement="%b`"+(++uid)+"`b%";
munged[uid]=match[0];
str=str.replace(RE,replacement)
}return str
}function restore(str){if(str===undefined){return str
}while(match=REmunged.exec(str)){str=str.replace(REmunged,munged[match[1]])
}return $.trim(str)
}function processAtRule(rule,callback){var split=rule.split(/\s+/);
var type=split.shift();
if(type=="media"){var css=restore(split.pop()).slice(1,-1);
if($.parsecss.mediumApplies(split.join(" "))){$.parsecss(css,callback)
}}else{if(type="import"){var url=restore(split.shift());
if($.parsecss.mediumApplies(split.join(" "))){url=url.replace(/^url\(|\)$/gi,"").replace(/^["']|["']$/g,"");
$.get(url,function(str){$.parsecss(str,callback)
})
}}}}function dojQuery(selector,which,value,value2){if(/show|hide/.test(which)){which+="Default"
}if(value2!==undefined&&$.livequery){var mode=2
}else{mode=/\bthis\b/.test(value)?1:0
}if(which&&$.fn[which]){function p(str){return function(){return $.fn[which].apply($(this),$.parsecss.parseArguments.call(this,str))
}
}switch(mode){case 0:return $.fn[which].apply($(selector),$.parsecss.parseArguments(value));
case 1:return $(selector).each(p(value));
case 2:return(new $.livequery(selector,document,undefined,p(value),value2===""?undefined:p(value2))).run()
}}else{if(which){return undefined
}else{switch(mode){case 0:return eval(value);
case 1:return $(selector).each(Function(value));
case 2:return(new $.livequery(selector,document,undefined,Function(value),value2===""?undefined:Function(value2))).run()
}}}}var _show={show:$.fn.show,hide:$.fn.hide};
$.each(["show","hide"],function(){var which=this,show=_show[which],plugin=which+"Default";
$.fn[which]=function(){if(arguments.length>0){return show.apply(this,arguments)
}return this.each(function(){var fn=$.data(this,plugin),$this=$(this);
if(fn){$.removeData(this,plugin);
fn.call($this);
$this.queue(function(){$this.data(plugin,fn).dequeue()
})
}else{show.call($this)
}})
};
$.fn[plugin]=function(){var args=$.makeArray(arguments),name=args[0];
if($.fn[name]){args.shift();
var fn=$.fn[name]
}else{if($.effects&&$.effects[name]){if(typeof args[1]!="object"){args.splice(1,0,{})
}fn=_show[which]
}else{fn=_show[which]
}}return this.data(plugin,function(){fn.apply(this,args)
})
}
});
var RESGMLcomment=/<!--([^-]|-[^-])*-->/g;
var REnotATag=/(>)[^<]*/g;
var REtag=/<(\w+)([^>]*)>/g;
function styleAttributes(HTMLtext,callback){var ret="",style,tags={};
HTMLtext=HTMLtext.replace(RESGMLcomment,"").replace(REnotATag,"$1");
munge(HTMLtext).replace(REtag,function(s,tag,attrs){tag=tag.toLowerCase();
if(tags[tag]){++tags[tag]
}else{tags[tag]=1
}if(style=/\bstyle\s*=\s*(%s`\d+`s%)/i.exec(attrs)){var id=/\bid\s*=\s*(\S+)/i.exec(attrs);
if(id){id="#"+restore(id[1]).replace(/^['"]|['"]$/g,"")
}else{id=tag+":eq("+(tags[tag]-1)+")"
}ret+=[id,"{",restore(style[1]).replace(/^['"]|['"]$/g,""),"}"].join("")
}});
$.parsecss(ret,callback)
}})(jQuery)

